-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 890 Bytes
/
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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="#">
<script src="script.js" defer></script>
<title> PacMan </title>
<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenMax.min.js"></script>
</head>
<body>
<div id='pre' class="pre-loader centered">
<button class="start_button centered" type="button">play pacman</button>
</div>
<!-- Pre-loading page -->
<div>
<h1 id="title">PA1MAN</h1>
</div>
<div id="container">
<div id="scoreboard">
<div id="lives"></div>
<h3 id="level"> </h3>
<h4 id="score"> </h4>
<h4 id='highscore'></h4>
</div>
<div id='game'>
<canvas></canvas>
</div>
</div>
</body>
</html>