-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (25 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BB8 Mini Game</title>
<meta name="author" content="Gunnar Miklis">
<meta name="keywords" content="HTML, CSS, JavaScript, p5js">
<meta name="description" content="project for w2d5 of ironhack web dev bootcamp 2023">
<link sizes="32x32" type="image/ico" rel="icon" href="https://www.datocms-assets.com/14946/1580815512-favicon.ico?auto=format&h=32&w=32">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="libraries/p5.min.js"></script>
<script src="libraries/p5.sound.min.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/p5@1.6.0/lib/p5.js"></script> -->
</head>
<body>
<h2>press <space> or<br>touch screen to jump</h2>
<h3>coins collected: <span>0</span>/10</h3>
<script src="src/background.js"></script>
<script src="src/player.js"></script>
<script src="src/coin.js"></script>
<script src="src/game.js"></script>
<script src="src/sketch.js"></script>
</body>
</html>