-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetwork.html
More file actions
102 lines (92 loc) · 3.1 KB
/
Network.html
File metadata and controls
102 lines (92 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css"/>
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<title>Network</title>
<style>
.nav-btn {
padding: 15px 40px;
margin: 10px;
font-size: 1.3em;
color: #fff;
background: #343a40;
border: none;
border-radius: 12px;
box-shadow: 0 0 10px #007BFF;
cursor: pointer;
transition: box-shadow 0.3s;
}
.nav-btn:hover {
box-shadow: 0 0 25px #0ff, 0 0 50px #007BFF;
background: #007BFF;
}
</style>
</head>
<body class="network-page">
<h1>Network Page</h1>
<div>
<a href="index.html"><button class="nav-btn">Home Page</button></a>
<a href="Hardware.html"><button class="nav-btn">Hardware</button></a>
<a href="Software.html"><button class="nav-btn">Software</button></a>
</div>
</div>
<div class="card-container">
<!-- First Flip Card -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front card1-front">
</div>
<div class="flip-card-back card1-back">
</div>
</div>
</div>
<!-- Second Flip Card -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front card2-front">
</div>
<div class="flip-card-back card2-back">
</div>
</div>
</div>
</div>
<p>An IT network( Information Technology Network) refers to a group of interconnected devices that
communicate with each other to share resources and data .
<b><u>These devices include:</u></b>
<ul>
<li>Computers</li>
<li>Servers</li>
<li>Printers</li>
<li>Phones</li>
<li>Networking equipment (routers and switches)</li>
</ul>
<b><u>Basic components of an IT network</u></b>
<ul>
<li>Nodes - Any devices connected to the network. For example ( computers, phones , servers etc)</li>
<li>Router - Directs data between devices and the internet.</li>
<li>Switch - Connects devices within the same local network( LAN) and passes data between them.</li>
<li>Firewall - Protects the network from unauthorized acess or cyber threats.</li>
<li>Acess Point - Allows wireless devices to contect to the network.</li>
</ul>
<b><u>Types of IT Networks</u></b>
<ul>
<li>Local Area Network (LAN):
Connects devices in a limited area such as an office or home.</li>
Wide Area Network (WAN):
Connects devices over a large geographical area such as across cities and countries.
Metropolitan Area Network (MAN):
Covers a larger area such as a city or large campus.
Personal Area Network (PAN):
Connects devices around an individual user such as a smart phone and a Bluetooth headset.
</ul>
</p>
<script>
window.onload = function() { document.body.classList.remove('is-preload'); }
window.ontouchmove = function() { return false; }
window.onorientationchange = function() { document.body.scrollTop = 0; }
</script>
</body>
</html>