-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.66 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>Circle Guy</title>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="./assets/style.css">
<link href="https://fonts.googleapis.com/css?family=Bungee" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="./pacmanFavicon2.png"/>
</head>
<body>
<div class="pacman-page">
<div class="header">
<div class="score">
<h3 id="score">Score: 0</h3>
</div>
<div class="title">
<h1>Circle Guy</h1>
</div>
<div class="personalInfo">
<div class="name">
By Avi Vazana
</div>
<div class="links">
<a class="website" href="https://avivazana.com/">Website</a>
<a class="linkedin" href="https://www.linkedin.com/in/avichaivazana/">LinkedIn</a>
<a class="github" href="https://github.com/avvazana">Github</a>
</div>
</div>
</div>
<h2 id="status"></h2>
<br/>
<div id="pacman-board">
<script src="lib/tile.js"></script>
<script src="lib/pacman.js"></script>
<script src="lib/ghost.js"></script>
<script src="lib/board.js"></script>
<script src="lib/game.js"></script>
</div>
</div>
</body>
</html>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.sound.min.js"></script> -->