-
Notifications
You must be signed in to change notification settings - Fork 0
/
indicacoes.html
43 lines (29 loc) · 986 Bytes
/
indicacoes.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
<!DOCTYPE html>
<html>
<head lang="pt-BR">
<meta charset="UTF-8">
<title>Díade</title>
<link rel="stylesheet" href="assets/css/padrao.css">
<link rel="stylesheet" href="assets/css/indStyle.css">
<link rel="shortcut icon" href="../img/logo.png" type="image/x-icon">
</head>
<body>
<header>
<ul>
<li>Introdução</li>
<li>Linha Temporal</li>
<li id="atual">Indicações</li>
<li>Conclusão</li>
</ul>
</header>
<main>
<section id="indic"></section>
<a href="./linhaTempo.html" id="botaoAnterior">Página Anterior</a>
<a href="./conclusao.html" id="botaoProximo">Próxima Página</a>
</main>
<footer>
© Grupo
</footer>
<script type="module" src="./assets/js/indScript.js"></script>
</body>
</html>