-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.39 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
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rick's Snake</title>
<link rel="stylesheet" href="./css/styles.css">
<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=Montserrat:wght@300&family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<h1>Rick's Snake</h1>
<h3></h3>
<main class="grid-wrapper">
<section class="grid"></section>
<div class = 'container'>
<div class="modal" id='gameOver'>
<div class="modal-content">
<h3>Ah shucks, snakey dead.</h3>
<p>Would you like to play again?</p>
<div class="buttons">
<button id="playAgain">Play again.</button>
<button id="noThanks">No thanks.</button>
</div>
</div>
</div>
<!-- <button id="gameOver">GAME OVER <br> Play again?</button> -->
</main>
<p class = "credits">Sound Effect from <a href="https://pixabay.com/sound-effects//?utm_source=link-attribution&utm_medium=referral&utm_campaign=music&utm_content=145251">Pixabay</a></p>
<script src="./js/scripts.js"> </script>
</body>
</html>