-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsavegame.html
More file actions
34 lines (29 loc) · 1.21 KB
/
savegame.html
File metadata and controls
34 lines (29 loc) · 1.21 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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Save Game</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="savegame.css">
</head>
<body>
<div class="container">
<div id="end" class="flex-center flex-column">
<h1 id="finalScore"></h1>
<form class="end-form-container">
<h2 id="end-text">Enter your name to save your score!</h2>
<input type="text" name="name" id="username" placeholder="Enter your name">
<a href="highscores.html"><button type="submit" class="btn" id="saveBtn">Save</button></a>
</form>
<a href="index.html"><button type="text" class=btn id="playAgainBtn">Play Again</button></a>
<a href="home.html"><button type="text" class="btn" id="homeBtn">Home</button></a>
</div>
</div>
<script src="savegame.js"></script>
</body>
</html>