-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 773 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
</style>
<title>Block Jumper</title>
<script
src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ="
crossorigin="anonymous"
></script>
<script type="module" src="main.js"></script>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1><span>Block</span> Jumper</h1>
<h2>
<span class="blink">Tap Spacebar</span><span class="blink">Click</span>
</h2>
<h2>to Jump!</h2>
</body>
</html>