-
Notifications
You must be signed in to change notification settings - Fork 0
/
SPIP5.html
69 lines (58 loc) · 3.52 KB
/
SPIP5.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
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
<html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="icon" href="img/cycm.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Alex+Brush&family=Baloo+Tammudu+2&family=Open+Sans&family=Orbitron&family=Roboto:wght@300&display=swap" rel="stylesheet">
<title>CyberCrime Help Desk | GCESC CLASS 7 BOYS</title>
</head>
<body class="font-fav">
<style type="text/css">
.body{
padding: 0 100px;
margin-top: 100px;
text-align: center;
}
.body h1{
color: red;
}
.body h2{
color: green;
}
</style>
<div class="parent">
<div id="navbar">
<a class="active" href="index.html">Introduction</a>
<a href="qna.html">Back</a>
<a href="extra.html">Extra Problems?</a>
</div>
<div class="body">
<h1>Code: SPIP5- Spreading private Information and Pictures </h1>
<h2>Solution and precaution to these:</h2>
<p>• Be careful about what you share online. Once you post something online, it's very difficult to control who sees it or how it's used. Only share information and pictures that you're comfortable with anyone seeing.<br>
• Use strong passwords and keep them confidential. Strong passwords are at least 12 characters long and include a mix of upper and lowercase letters, numbers, and symbols. Don't use the same password for multiple accounts, and don't share your passwords with anyone.<br>
• Use two-factor authentication (2FA) whenever possible.2FA adds an extra layer of security to your accounts by requiring you to enter a code from your phone in addition to your password. This makes it much more difficult for someone to hack into your account, even if they have your password.<br>
• Be careful about who you click on links from. Phishing emails and websites are designed to trick you into revealing personal information or clicking on malicious links. If you receive an email or see a website that looks suspicious, don't click on any links or open any attachments.<br>
• Use security software and keep it up to date. Security software can help protect your computer from viruses, malware, and other threats. Make sure to keep your security software up to date so that it can detect the latest threats.
</p>
</div>
<footer>
<p>Product Owner: Ghatail Cantonment English School And College, Class 7 Boys<br>
"Copyright©"</p>
</footer>
</body><script>
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script></html>