-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (37 loc) · 1.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<title>QR Code Security Risks</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="loading-container">
<h2 class="fade-in-text">THIS COULD HAVE BEEN A PHISHING WEBPAGE.</h2>
<h2 class="delayed-fade-in">LET'S TALK ABOUT SECURITY.</h2>
<div class="risks-container">
<div class="risk-item">
<h3>Malicious Websites</h3>
<p>QR codes can lead to fake websites designed to steal your personal information.</p>
</div>
<div class="risk-item">
<h3>Automatic Downloads</h3>
<p>Some QR codes trigger automatic downloads of malware or viruses.</p>
</div>
<div class="risk-item">
<h3>Payment Scams</h3>
<p>Fraudsters can replace legitimate payment QR codes with their own to steal money.</p>
</div>
<div class="risk-item">
<h3>Stay Safe</h3>
<p>Always verify the source of QR codes and use a scanner app that previews URLs before visiting them.</p>
</div>
</div>
<a href="https://nullneu.pages.dev">
<img class="logo" src="nullNEU.png" alt="nullNEU logo">
</a>
<a href="https://nullneu.pages.dev" class="cta-button">Learn More About Security</a>
</div>
</body>
</html>