-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 792 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 792 Bytes
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>
<head>
<meta charset="utf-8">
<title>BrickBreak game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles//style.css">
</head>
<body>
<header>
<h1>BrickBreak</h1>
</header>
<section>
<script src="https://cdn.jsdelivr.net/npm/p5"></script>
<script src="paddle.js"></script>
<script src="ball.js"></script>
<script src="brick.js"></script>
<script src="index.js"></script>
</section>
<div>
<ul>
<li>move with arrow keys</li>
<li>break all bricks to win</li>
<li>if the ball falls off screen you lose</li>
</ul>
<p>Imhungry has won</p>
</div>
</body>
</html>