-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.bak
29 lines (24 loc) · 1.08 KB
/
index.html.bak
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
<html>
<head>
<title>Pacmen</title>
<!-- Google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="style-legend.css">
</head>
<body>
<div class="legend-frame">
<div class="legend-title">Pacman Exercise</div>
<div class="legend-content">Movement and collision exercise.</div>
<div class="legend-content"><a class="stylized-link" href="https://github.com/Mike-Veilleux/pacman-exercise" target="_blank">Github</a><a class="stylized-link" href="https://mike-veilleux.github.io/projects.html" target="_blank">Project</a></div>
</div>
<div id='game'>
<button onclick='makeOne()' width='200' height='30'>Add PacMan</button>
<button onclick='update()' width='200' height='30'>Start Game</button>
</div>
<!-- DO NOT CHANGE THIS LINE OF CODE -->
<script src="./pacmen.js"></script>
</body>
</html>