-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.24 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trivia Game</title>
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="resources/css/main.css">
<link rel="stylesheet" href="resources/css/index.css">
</head>
<body>
<div class="main">
<div class="nav-bar">
<div class="nav-item"><a href="index.html">Home</a></div>
<div class="nav-item"><a href="selectQuiz.html">Start Quiz</a></div>
<div class="nav-item"><a href="results.html">Results</a></div>
</div>
<div class="wrapper">
<div class="heading">LET'S PLAY</div>
<div class="heading">TRIVIA</div>
<div>
<a href="selectQuiz.html" class="play-button">PLAY <i class="fa fa-play"></i></a>
</div>
</div>
</div>
<script src="resources/scripts/index.js"></script>
</body>
</html>