-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (43 loc) · 2.01 KB
/
Copy pathindex.html
File metadata and controls
55 lines (43 loc) · 2.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<!-- Pacman Game -->
<html>
<head>
<!--metadata goes here -->
<title>Kobe's Arcade: Pacman</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="main.js" charset="utf-8"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.2/css/all.css" integrity="sha384-rtJEYb85SiYWgfpCr0jn174XgJTn4rptSOQsMroFBPQSGLdOC5IbubP6lJ35qoM9" crossorigin="anonymous">
<meta charset="utf-8">
<meta name="description" content="Welcome to Kobe's Arcade! Time to play Pacman.">
<meta name="author" content="Kobe T.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- BLURB -->
<div class="top-page">
<center>
<h1>Pacman</h1>
<a class="github" target="_blank" href="https://github.com/kotran222/pacman"><i class="fab fa-github"></i></a>
<h2>Welcome to Kobe's Arcade-19! Time to play Pacman.</h2>
<div class="instructions">
<p><strong>Instructions: </strong> Player (Pacman) must eat all the pellets to rack up points while avoiding four ghosts (blinky, pinky, inky, and Clyde) in order to win the game. </p>
<p>Move using the arrow buttons!</p>
<p>Tips: Try to eat power pellets to scare ghosts in order to eat them. </p>
</div>
<br/>
</center>
<br/>
</div>
<center>
<!-- Game Grid -->
<div class="grid"></div>
<!-- Score Board -->
<h3>
Score:  <span id="score"></span>
</h3>
<!-- <button class='reset'>RESET</button> -->
<button class='reset' onClick="window.location.href=window.location.href">RESET</button>
</center>
<footer>  Web Design & Gameplay by Kobe T.</footer>
</body>
</html>