-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.32 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NLW</title>
</head>
<body>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NLW Experts</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<main>
<header>
<img src="https://gist.githubusercontent.com/maykbrito/f47569e32fb2b21f2ecc9f4c035c141f/raw/a45997404564112d7596fbb1b9cad5de5521927e/logo.svg" alt="Logo NLW">
<h1>Teste seus conhecimentos</h1>
</header>
<div id="quiz"></div>
<template>
<div class="quiz-item">
<h3>
Pergunta 01
</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>
<script src="./index.js"></script>
</body>
</html>
</body>
</html>