-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtraining.html
More file actions
31 lines (26 loc) · 730 Bytes
/
training.html
File metadata and controls
31 lines (26 loc) · 730 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
<!DOCTYPE html>
<html>
<head>
<title>Breakout clone In JS</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/modal.css"/>
</head>
<body>
<!-- Top Bar -->
<div class="game-notifications clearfix">
<div class="instr">
Score : 0
</div>
<ul class="life">
<li class="heart"></li>
<li class="heart"></li>
<li class="heart"></li>
</ul>
</div>
<div class="container">
<canvas id="gameBoard"></canvas>
</div>
<!-- Load requirejs -->
<script type="text/javascript" src="libs/require.js" data-main="training_entry"></script>
</body>
</html>