-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.17 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Animal Sounds | Trijam #167</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sniglet:wght@400;800&display=swap" rel="stylesheet">
<link href="styles/style.css" rel="stylesheet">
</head>
<body>
<header><a href="https://github.com/thecodingcouple/trijam-167">Animal Sounds | Trijam #167</a></header>
<main>
<p id="info-message">Guess the right sequence of animal sounds to win the game!</p>
<section id="animal-button-group"></section>
<p id="endgame-message">Listen carefully!</p>
<button id="start-button">Start Game</button>
</main>
<footer>
<a href="https://www.thecodingcouple.com/">© 2022 The Coding Couple</a>
</footer>
<script src="scripts/main.js"></script>
</body>
</html>