-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 860 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links e Navegação</title>
<style>
span {
color: red;
}
div {
border: 1px solid black;
}
.negrito {
font-weight: bolder;
}
</style>
</head>
<body>
<h1>DIGITAL COLLEGE - SUA PLATAFORMA DE ENSINO TECNOLÓGICO</h1>
<div>Seja bem-vindo(a) à nossa plataforma</div>
<ul class="negrito">
<li><a href="/contatos.html" target="_self">Contatos</a></li>
<li><a href="/sobre.html" target="_self">Sobre</a></li>
<li><a href="/valores.html" target="_self">Valores</a></li>
<li><a href="/trabalhe conosco.html" target="_self">Trabalhe Conosco</a></li>
</ul>
</body>
</html>