-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
36 lines (32 loc) · 1.08 KB
/
main.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js" async></script>
<title>Quiz JavaScript</title>
</head>
<body>
<div class="container" >
<div class="questions-container hide">
<span class="question" style="color:#326A8F">Pergunta aqui?</span>
<div class="answers-container">
<button class="answer button">Resposta 1</button>
<button class="answer button">Resposta 2</button>
<button class="answer button">Resposta 3</button>
<button class="answer button">Resposta 4</button>
</div>
</div>
<div><div class="controls-container">
<button class="start-quiz button">Começar Quiz!</button>
<button class="next-question button hide">Próxima pergunta</button>
</div></div>
</div>
<div style="display: flex; ;"></div>
</body>
<a href="index.html" class="floating-button">→</a>
</html>
</body>
</html>