-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (70 loc) · 2.99 KB
/
index.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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Topologias de Rede</title>
<link rel="icon" type="image/png" href="./img/ESMlogo.png"/>
<link rel="stylesheet" href="estilo.css"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<style>
body{
color: white;
}
#content p{
color: black;
font-size: 20px;
}
#buttons-section{
display: inline-block;
margin-bottom: 5px;
}
#button:first-child{
border-radius: 50px 5px 5px 50px;
}
#button:last-child{
border-radius: 5px 50px 50px 5px;
}
@media only screen and (max-width:365px){
#button:first-child{
border-radius: 50px 50px 5px 5px;
margin-bottom: 3px;
}
#button:last-child{
border-radius: 5px 5px 50px 50px;
}
}
</style>
</head>
<body>
<header>
<a href="index.html"><button>Início</button></a><a href="bus.html"><button>Bus</button></a><a href="anel.html"><button>Anel</button></a>
</header>
<div id="content">
<h1>Topologias de Rede (Lógica)</h1>
<div id="wrapper">
<p>
A topologia lógica refere-se como é que os dados de uma rede funciona nos meios,
ou a maneira como os dados são transmitidos de um dispositivo para o
outro sem ter em conta a ligação física entre os dispositivos.
<br><br>
Topologias abordadas neste website:
</p>
<div id="buttons-section">
<a id="button" href="bus.html">Barramento (Bus)</a>
<a id="button" href="anel.html">Anel (Token-ring)</a>
</div>
</div>
</div>
<footer>
<a href="https://www.esmonserrate.org/" target="_blank" rel="noopener noreferrer">
<img src="./img/ESMlogo.png"/>
</a>
<p>Escola Secundária de Monserrate</p>
<p>Projeto criado pelos alunos do 11ºR:
<a href="https://github.com/CunhaPedro25" target="_blank" rel="noopener noreferrer">Pedro Cunha</a>,
<a href="https://github.com/joaoalves03" target="_blank" rel="noopener noreferrer">João Alves</a>,
<a href="https://github.com/Lolinatorishere" target="_blank" rel="noopener noreferrer">Gabriel Banks</a>
</p>
</footer>
</body>
</html>