-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 977 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
<!DOCTYPE html>
<html>
<head>
<title>Pac-Man</title>
<link rel='shortcut icon' href='assets/favicon.ico' type='image/x-icon'/ >
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="./assets/main.css"/>
</head>
<h1>PAC-MAN</h1>
<p class="author">by Phil Salant</p>
<body>
<ul class="instructions"><span class="underline">Instructions:</span><br /><br />
<li>Press N to start a new game</li><br />
<li>Arrow keys control Pac-Man's direction</li><br />
<li>Press S to toggle sound</li><br />
</ul>
<div class="pacman-container">
<div id="pacman"></div>
</div>
<script src="lib/bundle.js"></script>
<ul class="links">
<li><a class="link" href="http://www.philsalant.com">Portfolio</a></li>
<li><a class="link" href="https://github.com/PSalant726" >GitHub</a></li>
<li><a class="link" href="https://www.linkedin.com/in/psalant">LinkedIn</a></li>
</ul>
</body>
</html>