-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.75 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An interactive quiz for young learners, helping them explore the fascinating world of geography while having fun">
<meta name="keywords" content="javascript quiz geography-quiz">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/a4c18554aa.js" crossorigin="anonymous"></script>
<title>Geography Quiz</title>
</head>
<body>
<!-- Start of Header Section-->
<header>
<h1>Geography for kids</h1>
<h2>Interactive and fun quiz</h2>
</header>
<!-- End Header Section-->
<!-- Gaming Area controls -->
<div class="flex-column flex-center">
<h2>Are you Ready?</h2>
<a href="./game.html" class="btn"><i class="fa-solid fa-play" style="color: #0F5136;"></i> Play</a>
<a href="./highscores.html" id="highscore-btn" class="btn"><i class="fa-solid fa-trophy" style="color: #0F5136;"></i> High Scores</a>
</div>
<!-- Start Footer Section-->
<footer>
<a href="https://github.com/deeksha-varma" target="_blank" rel="noopener" aria-label="Github page of developer (opens in a new tab).">
<i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/deeksha-varma-74aa18105/" target="_blank" rel="noopener" aria-label="LinkedIn page of developer (opens in a new tab).">
<i class="fa-brands fa-linkedin-in"></i></a>
</footer>
<!-- End Footer Section-->
</body>
</html>