-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.01 KB
/
index.html
File metadata and controls
30 lines (28 loc) · 1.01 KB
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">
<title>Pinball | A classic pin ball clone in HTML, CSS and JS</title>
<link rel="icon" href="logo.png"
type="png">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="container">
<div class="score current-score">
score<br><span></span>
</div>
<div class="score high-score">
high score<br><span></span>
</div>
<button class="trigger left-trigger">tap!</button>
<button class="trigger right-trigger">tap!</button>
</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src='https://cdn.rawgit.com/schteppe/poly-decomp.js/1ef946f1/build/decomp.min.js'></script>
<script src='https://cdn.rawgit.com/liabru/matter-js/0895d81f/build/matter.min.js'></script>
<script src='https://cdn.rawgit.com/liabru/matter-attractors/c470ed42/build/matter-attractors.min.js'></script><script src="./script.js"></script>
</body>
</html>