-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (69 loc) · 2.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>My Quiz App</title>
</head>
<body>
<button class="btn btn-success btn_start">START QUİZ</button>
<div class="card quiz_box">
<header class="card-header">
<div class="title">Quiz App</div>
<div class="time_panel">
<div class="time_panel_text">Remainin Time:</div>
<div class="time_panel_second">5</div>
</div>
<div class="time_line">
</div>
</header>
<section class="card-body">
<div class="var">
<!-- What of the followings are not a capital of a country? -->
</div>
<div class="answers">
<!-- <span class="answer"><b>A: </b>Ankara</span>
<span class="answer"><b>B: </b> Londra</span>
<span class="answer"><b>C: </b> Canberra</span>
<span class="answer"><b>D: </b> Lviv</span> -->
</div>
</section>
<footer class="card-footer">
<div class="question_index">
<!-- 2/4 -->
</div>
<button class="btn btn-primary btn-md btn_next">Next Question</button>
</footer>
</div>
<div class="card score_box " >
<div class="card-header p-3 fw-bold fs-4" style="width: 600px; text-align: center;">
<span class="p-3">The Quiz Has Finished</span>
</div>
<div class="total_score card-body">
<div>
<div class="score_right fw-bolder fs-2 text-success">TRUE:</div>
<div class="score_wrong fw-bolder fs-2 text-danger">FALSE:</div>
</div>
<div class="note" style="height:50px ;">
<span style="font-weight: 600;"></span>
</div>
</div>
<div class="card-footer" style="height: 100px;">
<div class="replay">
<span>Restart</span>
<i class="fa-solid fa-reply"></i>
</div>
<div class="end">
<span>Finish</span>
<i class="fa-solid fa-hourglass-end"></i>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>