This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (51 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="lucas0headshot">
<title>Quiz</title>
<link rel="shortcut icon" href="assets/images/icon.svg" type="image/svg">
<link rel="stylesheet" href="assets/css/animations.css" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<template>
<div class="quiz-question">
<h3>Pergunta</h3>
<dl class="question-answers">
<dt class="question-answer">
<input type="radio" name="answer">
<span>
Resposta
</span>
</dt>
</dl>
</div>
</template>
<main>
<header>
<div class="info">
<a href="https://www.rocketseat.com.br/eventos/nlw" target="_blank" referrerpolicy="noreffer">
<img src="assets/images/logo.svg" class="logo" alt="Logo da NLW Expert">
</a>
<div class="author">
<h2>Feito por</h2>
<div class="author-image-wrapper">
<a referrerpolicy="noreffer" target="_blank" href="https://github.com/lucas0headshot">
<img src="assets/images/author.jpg" alt="Imagem do autor">
</a>
</div>
</div>
</div>
<h1>Teste seu conhecimento em JS!</h1>
</header>
<section id="quiz"></section>
<footer id="result">
<strong>Acertos</strong>
<span></span>
</footer>
</main>
<script src="assets/js/script.js"></script>
</body>
</html>