-
Notifications
You must be signed in to change notification settings - Fork 0
/
terceiro.html
31 lines (31 loc) · 1.07 KB
/
terceiro.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3º Lugar</title>
<link rel="shortcut icon" href="assets/icons/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="green">
<div id="app">
<header>
<img src="assets/css/logo.svg" alt="Logo NLW">
<nav>
<a href="index.html">Fase de Grupos</a>
<a href="oitavas.html">Oitavas</a>
<a href="quartas.html">Quartas</a>
<a href="semifinais.html">Semis</a>
<a href="terceiro.html">3º Colocado</a>
<a href="final.html">Final</a>
</nav>
</header>
<main id="cards"></main>
</div>
<footer>
<p>Desenvolvido por <a href="https://github.com/carlosvcerqueira" target="_blank">Carlos Cerqueira</a></p>
</footer>
<script src="assets/js/terceiro.js"></script>
</body>
</html>