-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 981 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 981 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Interativo</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<img id="back" src="./img/background.jpg" alt="">
<div class="quiz-container">
<h1 id="titulo">Quiz Interativo</h1>
<p id="score"></p>
<p id="wrong"></p>
<p id="question"></p>
<p id="alert"></p>
<p id="choices">
<button id="choice1" class="choice"></button>
<button id="choice2" class="choice"></button>
<button id="choice3" class="choice"></button>
<button id="choice4" class="choice"></button>
</p>
<button id="next">Próximo</button>
</div>
<script src="./js/script.js"></script>
</body>
</html>