-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
31 lines (30 loc) · 1.04 KB
/
game.html
File metadata and controls
31 lines (30 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pac-Man Game</title>
<link rel="stylesheet" href="css/pacmanstyle.css">
</head>
<body>
<div class="game-nav-container">
<!-- Navigation links on the left -->
<div class="nav-links">
<a href="index.html">Home</a> |
<a href="resume.html">Resume</a> |
<a href="scratch.html">Scratch</a> |
<a href="#">Game</a>
</div>
<!-- Game container -->
<div class="game-container">
<div id="pacman" class="pacman"></div>
<div class="dot" style="top: 50px; left: 150px;"></div>
<div class="dot" style="top: 100px; left: 200px;"></div>
<div class="dot" style="top: 200px; left: 100px;"></div>
<div class="dot" style="top: 250px; left: 250px;"></div>
<div id="score">Score: 0</div>
</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>