-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://cdn.dribbble.com/users/296198/screenshots/5529998/oquiz_4x.png">
<title>Quiz App</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<button id="start">Start Quiz</button>
<div id="quizApp">
<div class="quizInfo">
<div class="welcomeMsg">
Welcome:
<span class="username">
<!--User Name Ahmed Hafez-->
</span>
</div>
<div class="quizName">
<!--Quiz Name HTML5-->
</div>
<div class="examTimer">
<!--Exam Timer 30:00-->
</div>
</div>
<div id="selectAnswer"></div>
<div id="quizArea"></div>
<button id='nextbutt' style="display: none;">next</button>
<button id='showbutt' style="display: none;">show</button>
<button id='hide' style="display: none;">hide</button>
<button id='finish' style="display:none">finish</button>
<button id='result' style="display: none;">get your result</button>
</div>
<script src="quizPageHeader.js" type="module"></script>
<script src="script.js" type="module"></script>
</body>
</html>