-
Notifications
You must be signed in to change notification settings - Fork 0
/
title.html
58 lines (51 loc) · 1.98 KB
/
title.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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">
<link rel="stylesheet" href="CSS/styles.css">
</link>
<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=Space+Grotesk&display=swap" rel="stylesheet">
<title>SPACE TETRIS</title>
</head>
<body>
<br>
<br>
<div class="page">
<header>
<h1>SPACE TETRIS</h1>
<h3>Shoot the comets and build your space-station to score!</h3>
</header>
<div class="gameWindow">
<div class="buttons">
<button class="board">New Game</button><br>
<button class="board">Leaderboard</button><br>
<button class="options">Options</button><br>
<button class="credits">Credits</button><br>
</div>
</div>
</div>
</div>
<div class="bar">
<p>Background Music:</p>
<audio class="music" autoplay controls>
<source src="Audio/01 Main Theme.mp3" type="audio/mpeg">
</audio>
<button class="controls"> ← Left</button>
<button class="space">Space Bar = shoot</button>
<button class="controls"> → Right </button>
</div>
<hr>
<footer>
<a href="https://git.generalassemb.ly/emsleyd" target="blank">Git Profile</a>
<a href="http://danemsley.com/defaultsite" target="blank">Portfolio</a>
<a href="https://www.linkedin.com/in/danemsley/" target="blank">LinkedIn</a>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="JS/main.js"></script>
</body>
</html>