-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
26 lines (24 loc) · 962 Bytes
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ready to Play?</title>
<!--google fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Goldman&display=swap" rel="stylesheet">
<!--external css stylesheet-->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="home.css">
</head>
<body>
<div class="container">
<div id="home"></div>
<h1>Are you ready?</h1>
<h2>Answer each multiple choice question before the time runs out. Be careful, each wrong answer decreases the time. Compare high scores with friends. </h2>
<a href="index.html" class="btn" id="play-Btn">Play</a>
<a href="highscores.html" class="btn" id="highscores-btn">High Scores</a>
</div>
<script src="home.js"></script>
</body>
</html>