-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.13 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz - NLW Rocketseat</title>
<!-- Folha de estilo -->
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/responsive.css">
<script src="./script/script.js" defer></script>
</head>
<body>
<main>
<header>
<img src="./assets/images/logo-nlw.svg" alt="Logo NLW Rocketseat">
<h1>Teste seus conhecimentos</h1>
</header>
<div id="quiz"></div>
<template>
<div class="quiz-item">
<h3>Pergunta 1</h3>
<dl>
<dt>
<input type="radio" name="item" value="0">
<span>Resposta A</span>
</dt>
</dl>
</div>
</template>
<div id="acertos">
<strong>Acertos</strong>
<span>0 de 10</span>
</div>
</main>
</body>
</html>