-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.13 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infinit Pacman</title>
<style> body {padding: 0; margin: 0;} </style>
<script src="p5.min.js"></script>
<script src="p5.dom.min.js"></script>
<script src="p5.sound.min.js"></script>
<!-- <script src="Cell.js"></script>
<script src="AStar.js"></script> -->
<script src="helper.js"></script>
<script src="Cell.js"></script>
<script src="Enemy.js"></script>
<script src="Player.js"></script>
<script src="sketch.js"></script>
<style>
#defaultCanvas0 {
display: block;
width: fit-content;
margin: 0 auto;
}
body {
background: black;
}
* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: white;
}
p {
text-align: center;
}
</style>
</head>
<body>
<h1 style="color: white"><center>Infinit Pacman</center></h1>
<p>
<center>By <a href="http://www.toubal.com/">Imad Toubal</a></center>
</p>
</body>
</html>