-
Notifications
You must be signed in to change notification settings - Fork 1
/
quiz.html
34 lines (34 loc) · 988 Bytes
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Quiz Page</title>
<link rel="stylesheet" href="CSS/quiz.css">
</head>
<body>
<div class="container">
<header>
<div class="score-user">
<p id="score">Skor :</p>
<a href="">User1344446</a>
</div>
<div>
<progress id="file" value="90" max="100"> 90% </progress>
</div>
</header>
<main>
<div class="question">
<P> Lorem ipsum dolor sit amet consectetur adipisicing elit. Animi, nobis.?</P>
</div>
<div class="answer">
<button id="red"> Jawaban A</button>
<button id="blue">Jawaban B</button>
<button id="green">Jawaban C</button>
<button id="yellow">Jawaban D</button>
</div>
</main>
</div>
</body>
</html>