-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphishing.html
23 lines (23 loc) · 964 Bytes
/
phishing.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phishing Alert System</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>⚠ Phishing Detection System ⚠</h1>
<p class="description">Test your links below. Click on a link to check for phishing threats!</p>
<div class="link-container">
<a href="#" class="link" data-url="http://malicious-site.com">🚫 Malicious Site</a>
<a href="#" class="link" data-url="http://safe-site.com">✅ Safe Site</a>
</div>
<div id="alertMessage" class="alert"></div>
<div id="notifications" class="notifications"></div>
</div>
<script src="phishing.js"></script>
</body>
</html>