-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 898 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="./Images/Logo.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Move Element</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="head">Touch no Fire</div>
<div id="container">
<div id="mover">
<h3 id="h3">😋</h3>
</div>
<div id="food">🍔</div>
<div class="enemy">🔥</div>
</div>
<div class="parabox">
<p id="paragraph">
Game Rules!<br>
* Eat the food to gain score<br>
* Do not touch the fire<br>
* The fire multiplies once with even scores<br>
* If you stay idle, the fire won't do anything<br>
* Do not touch the moving fire<br>
* Please play using arrow keys<br>
</p>
</div>
<script src="script.js"></script>
</body>
</html>