-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
51 lines (35 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name=“description” content="Trivia Quiz">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Rye&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Supermercado+One&display=swap" rel="stylesheet">
<link rel="icon" href="./img/angry-face-with-horns.png" />
<title>Trial by Trivia</title>
</head>
<body>
<section class="score-title" tabindex="0"> SCORE:</section>
<section class = "container"></section>
<section class = "total" tabindex="0"> 0 </section>
<header class="header">Trial by Trivia</header>
<section>
<section class= "question" id="question" aria-labelledby="question"></section>
</section>
<section class="answers">
<button type="radio" class="right ansbtn" id="answer1" aria-labelledby="answer1"></button>
<button type="radio" class="wrong ansbtn" id="answer2" aria-labelledby="answer2"></button>
<button type="radio" class="wrong ansbtn" id="answer3" aria-labelledby="answer3"></button>
<button type="radio" class="wrong ansbtn" id="answer4" aria-labelledby="answer4"></button>
</section>
<section class="buttons">
<button class="next btn">Next</butoyn>
</section>
<section classs= "score-container"></section>
<script src="logic.js"></script>
<script src="dom.js"></script>
</body>
</html>