-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpontuacao.html
More file actions
77 lines (77 loc) · 2.04 KB
/
Copy pathpontuacao.html
File metadata and controls
77 lines (77 loc) · 2.04 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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz para programadores</title>
<link rel="stylesheet" href="./css/stylePontuacao.css" />
</head>
<body>
<header class="cabecalho">
<h1>Quiz interativo para programadores</h1>
<p>
Teste seus conhecimentos em programaçãoe veja qual pontuação voce
consegue fazer
</p>
<div class="cabecalho-menu">
<a href="index.html">
<img
src="./img/favicon.png"
alt="Logo Quiz"
class="cabecalho-menu-img"
/>
</a>
<nav class="menu">
<a href="pontuacao.html">Pontuação</a>
<a href="#">Respostas</a>
<a href="#">Contatos</a>
</nav>
</div>
</header>
<main class="container">
<h2>Tabela de Pontuação</h2>
<table border="1">
<thead>
<tr>
<td>Pontuação</td>
<td>Avaliação</td>
</tr>
</thead>
<tbody>
<tr>
<td>0 - 2</td>
<td>
Não desista. A cada tentativa é uma oportunidade de você aprender.
</td>
</tr>
<tr>
<td>3 - 4</td>
<td>Você ainda precisa melhorar.</td>
</tr>
<tr>
<td>5 - 7</td>
<td>Bom! Seu conhecimento em programação está satisfatório.</td>
</tr>
<tr>
<td>8</td>
<td>Perfeito. Você gabaritou!</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">Boa Sorte na proxima!</td>
</tr>
</tfoot>
</table>
</main>
<footer>
<p>© Quiz de programação. Todos os ireitos reservados</p>
<p>
Para conhecer mais sobre mim
<a href="https://www.linkedin.com/in/cglfilho/" target="_blank"
>clique aqui</a
>
</p>
</footer>
</body>
</html>