-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
58 lines (43 loc) · 1.46 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
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Web view -->
<title>Quiz Game - Main</title>
<!-- Css -->
<link rel="stylesheet" href="/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300&display=swap" rel="stylesheet">
<!-- Js -->
<script src="/main.js" defer></script>
</head>
<body>
<div class="header">
<h3 class="headerName" onclick="window.location = './index.html'">Quiz Game</h3>
<div class="information">
<!-- <h4 class="headerPoint">Done : <span id="point">0</span></h4> -->
<button id="finishBtn">Finish?</button>
</div>
</div>
<div class="main">
<div class="question-container">
<div class="question">
<span id="number"></span>
<span id="question"></span>
</div>
</div>
<ul id="options">
<!-- <li class="answer">
<input type="radio" name="answer" id="answer1">
<label>Ludwigyelstein</label>
</li> -->
</ul>
<div class="button">
<button id="beforeBtn">Before</button>
<button id="nextBtn">Next</button>
</div>
</div>
</body>
</html>