-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 676 Bytes
/
index.html
File metadata and controls
30 lines (24 loc) · 676 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="game_border">
<div id="canvas" class="game_canvas">
<h2 class="score">Score: <span id="score">0</span></h2>
<div id="game_over" class="game_over">
<h1>Game Over!</h1>
<a class="play_again" href="index.html">Play Again</a>
</div>
<div class="character" style="top: 80px;" id="character">
<img src="images/character.gif"/>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>