-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeography.html
More file actions
38 lines (36 loc) · 971 Bytes
/
geography.html
File metadata and controls
38 lines (36 loc) · 971 Bytes
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
<html lang="en">
<head>
<title>Trini Ting - Geography</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=1024">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" href="icon.ico" type="image/icon type">
</head>
<body onload="loadQuestions(0,3)">
<img src="yeah.svg" alt="">
<div class="streak">
<h1>Streak</h1>
<h2 id="streak"></h2>
</div>
<div class="score">
<h1>Score</h1>
<h2 id="score"></h2>
</div>
<div class="navBtn">
<button onclick="location.href = 'index.html';" class="nav">Home</button>
<button onclick="exit()" class="nav">Exit</button>
</div>
<div class="title">
<h1>Geography</h1>
<h2 id="countQ">Question 1</h2>
<h3 id="question"></h3>
</div>
<div class="question">
<input id="answer" type="text">
<br>
<input id="submit" type="submit" onclick="submit(3)">
</div>
<p id="footers">Keron Maharaj</p>
</body>
<script type="text/javascript" src="script.js"></script>
</html>