-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (123 loc) Β· 5.25 KB
/
index.html
File metadata and controls
130 lines (123 loc) Β· 5.25 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cybersecurity Tips</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navbar">
<ul>
<li><a href="#intro">Introduction</a></li>
<li><a href="#passwords">Passwords</a></li>
<li><a href="#emails">Emails & Phishing</a></li>
<li><a href="#social">Social Media Safety</a></li>
<li><a href="#devices">Device Security</a></li>
<li><a href="#resources">Resources</a></li>
</ul>
</nav>
<section id="intro">
<h1>Welcome to Cybersecurity Tips</h1>
<p>In today's digital world, staying safe online is more important than ever. This page provides simple tips to help you protect yourself from common cyber threats.</p>
</section>
<section id="passwords">
<h2>Passwords</h2>
<div class="tip">
<span class="icon">π</span>
<h3>Use Strong Passwords</h3>
<p>Create passwords that are long, unique, and include a mix of letters, numbers, and symbols.</p>
</div>
<div class="tip">
<span class="icon">π</span>
<h3>Enable Two-Factor Authentication</h3>
<p>Add an extra layer of security by enabling 2FA on your accounts whenever possible.</p>
</div>
<div class="tip">
<span class="icon">ποΈ</span>
<h3>Use a Password Manager</h3>
<p>Store and manage your passwords securely with a trusted password manager.</p>
</div>
</section>
<section id="emails">
<h2>Emails & Phishing</h2>
<div class="tip">
<span class="icon">π§</span>
<h3>Verify Senders</h3>
<p>Always check the email address of the sender before clicking links or opening attachments.</p>
</div>
<div class="tip">
<span class="icon">π«</span>
<h3>Avoid Suspicious Links</h3>
<p>Do not click on links from unknown sources. Hover over them to check the URL.</p>
</div>
<div class="tip">
<span class="icon">π‘οΈ</span>
<h3>Report Phishing</h3>
<p>If you receive a phishing email, report it to your email provider and delete it.</p>
</div>
</section>
<section id="social">
<h2>Social Media Safety</h2>
<div class="tip">
<span class="icon">π₯</span>
<h3>Adjust Privacy Settings</h3>
<p>Review and set your social media profiles to private to control who sees your posts.</p>
</div>
<div class="tip">
<span class="icon">π</span>
<h3>Be Careful with Sharing</h3>
<p>Think before sharing personal information online, as it can be used against you.</p>
</div>
<div class="tip">
<span class="icon">π·</span>
<h3>Accept Friend Requests Wisely</h3>
<p>Only accept friend requests from people you know in real life.</p>
</div>
</section>
<section id="devices">
<h2>Device Security</h2>
<div class="tip">
<span class="icon">π</span>
<h3>Keep Software Updated</h3>
<p>Regularly update your operating system and apps to fix security vulnerabilities.</p>
</div>
<div class="tip">
<span class="icon">π‘οΈ</span>
<h3>Use Antivirus Software</h3>
<p>Install and run antivirus software to protect against malware and viruses.</p>
</div>
<div class="tip">
<span class="icon">π</span>
<h3>Lock Your Devices</h3>
<p>Use passwords or biometrics to lock your devices when not in use.</p>
</div>
</section>
<section id="resources">
<h2>Resources</h2>
<p>Here are some trusted websites for more information on cybersecurity:</p>
<div class="resource-links">
<div class="resource-item">
<a href="https://www.cisa.gov/" target="_blank">CISA</a> - Cybersecurity and Infrastructure Security Agency
</div>
<div class="resource-item">
<a href="https://www.nist.gov/cyberframework" target="_blank">NIST Cybersecurity Framework</a> - National Institute of Standards and Technology
</div>
<div class="resource-item">
<a href="https://www.kaspersky.com/resource-center/threats" target="_blank">Kaspersky Threats</a> - Threat intelligence and security resources
</div>
<div class="resource-item">
<a href="https://www.cyberciti.biz/" target="_blank">Cyberciti</a> - Linux and cybersecurity tutorials
</div>
</div>
</section>
<footer id="footer">
<div class="footer-content">
<p>2025 Cybersecurity Tips Project</p>
<p>Created by Soham Dhande</p>
<p>Contact: <a href="mailto:sohamdhande1562007@gmail.com">sohamdhande1562007@gmail.com</a></p>
<p><a href="https://github.com/soham-founder/CybersecurityTips" target="_blank">View Source on GitHub</a></p>
</div>
</footer>
</body>
</html>