-
Notifications
You must be signed in to change notification settings - Fork 0
/
CB2.html
67 lines (58 loc) · 2.89 KB
/
CB2.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
<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: CB2- Cyber Bullying</h1>
<h2>Solution and precaution to these:</h2>
<p>• Use strong passwords and keep them private. Don't share your passwords with anyone, even your best friends.<br>
• Be careful about what information you share online. Don't share your address, phone number, or email address with people you don't know well.<br>
• Be aware of your privacy settings on social media and other websites. Make sure your information is only visible to the people you want to see it.<br>
• Don't respond to cyberbullies. This will only encourage them. Instead, block them and report them to the website or app where the bullying is happening.<br>
• Talk to a trusted adult if you are being cyberbullied. They can help you figure out how to deal with the situation.
</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>