-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 951 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Quiz Module</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
</head>
<body>
<div class="sidebar" id="left">
<p class="title">QUES</p>
<p class="detail">6</p>
<div class="divide"></div>
<p class="detail">20</p>
</div>
<div class="sidebar" id="right">
<p class="title">TIME</p>
<p class="detail">16 m</p>
<div class="divide"></div>
<p class="detail">35 s</p>
</div>
<div id="center">
<h1>QUIZ</h1>
<p>Which of these is <b>not</b> a social networking site?</p>
<table>
<tr>
<td class="option">A. Google+</td>
<td class="option">B. LinkedIn</td>
</tr>
<tr>
<td class="option">C. Facebook</td>
<td class="option">D. Twitter</td>
</tr>
</table>
<div id="submit">
<p>PREVIOUS QUESTION</p>
<p>SUBMIT & NEXT QUESTION</p>
</div>
</div>
</body>
</html>