-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgame.html
More file actions
21 lines (21 loc) · 854 Bytes
/
game.html
File metadata and controls
21 lines (21 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Keyboard Hero</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Tomorrow:wght@100;200;300;400&display=swap" rel="stylesheet">
<link rel="icon"
type="image/png"
href="images/logo.png">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/p5.js"></script>
<script src="https://unpkg.com/p5.collide2d"></script>
</head>
<body scroll="no" style="overflow: hidden">
<script src="global.js"></script>
<script src="p5.sound.js"></script>
<script src="game.js"></script>
</body>
</html>