-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (26 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trivia Game - Guess the country's capital</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/start.css">
</head>
<body>
<div class="strip container text-center my-3">
<h1 class="display-1">Guess The Capital</h1>
</div>
<div class="col-6 mb-2">
<a class="btn btn-dark w-100" href="pages/game.html">Start Game</a>
</div>
<div class="col-6 mb-2">
<a href="pages/scores.html" class="btn btn-warning w-100">High Scores <span class="fa fa-trophy"></span></a>
</div>
<div class="col-6">
<a class="btn btn-info w-100" href="pages/allCountries.html">Practice Arena</a>
</div>
</body>
</html>