-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code Quiz</title>
<link rel="stylesheet" href="assets/css/reset.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Baloo+Paaji+2&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<header>
<div class="container text-center">
<h1>Welcome to the Code Quiz!</h1>
</div>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<ul class="navbar-nav nav-fill w-100">
<li class="nav-item">
<h1 id="countdown">countdown</h1>
</li>
<li class="nav-item">
<a class="nav-link" href="hiscores.html">See High Scores</a>
</li>
</ul>
</nav>
</header>
<div class="container">
<div class="wrapper">
<div class="card">
<div class="card-header">
<button id="quizBtn" class="btn">Begin Code Quiz</button>
<h3>
Click the button ... Test your knowledge and compare your score!!!
</h3>
</div>
<div class="card-body">
<textarea id="quesTions" rows="8" cols="60"> </textarea>
<div id="box">
<button id="ansTrue">True</button>
<button id="ansFalse">False</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</div>
<footer class="py-4 bg-dark text-rgba(19, 142, 243, 0.884)">
<a>Copyright DM Web Development</a>
</footer>
</body>
</html>