-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.73 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.73 KB
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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cyber Safety Toolkit</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img src="assets/logo.png" alt="App Logo" class="logo" />
<h1>Cyber Safety Toolkit</h1>
<p>Your AI-powered companion for online safety</p>
<!-- Header-এর ভিতরে -->
<div class="theme-toggle" id="themeToggle">
<div class="toggle-slider"></div>
</div>
</header>
<main>
<div class="features">
<a href="pages/phishing-checker.html" class="feature-card">
<img src="assets/icons/phishing.png" alt="Phishing Icon">
<h2>Phishing Checker</h2>
<p>Check if a link is safe before you click.</p>
</a>
<a href="pages/password-analyzer.html" class="feature-card">
<img src="assets/icons/password.png" alt="Password Icon">
<h2>Password Analyzer</h2>
<p>Test your password strength securely.</p>
</a>
<a href="pages/chatbot.html" class="feature-card">
<img src="assets/icons/chatbot.png" alt="Chatbot Icon">
<h2>AI Chatbot</h2>
<p>Ask safety questions, get instant answers.</p>
</a>
<a href="pages/awareness.html" class="feature-card">
<img src="assets/icons/awareness.png" alt="Awareness Icon">
<h2>Awareness Tips</h2>
<p>Learn how to stay safe online.</p>
</a>
</div>
</main>
<footer>
<p>© 2025 Cyber Safety Toolkit | Made by Mujahid Hossain</p>
</footer>
</body>
</html>