-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonster.html
More file actions
43 lines (35 loc) · 995 Bytes
/
monster.html
File metadata and controls
43 lines (35 loc) · 995 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
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Monster</title>
<link rel="stylesheet" href="css/monster.css">
</head>
<body>
<h1>SHREK LIFE</h1>
<br>
<div id="monster" class="monster"></div>
<div id="actionbox" class="monster">
<p>Shrek life log</p>
</div>
<ul id="status">
<li>Life : 0</li><li>Money : 0</li><li>Awake</li>
</ul>
<hr>
<button id="b2">Run</button>
<button id="b3">Fight</button>
<button id="b7">Work</button>
<button id="b4">Sleep</button>
<button id="b5">Eat</button>
<button id="b6">Show</button>
<hr>
<button id="b1">New life</button><button id="k">Kill</button>
<hr>
<h2>Shrek Music</h2>
<audio controls loop="true">
<source src="Shrek.mp3" type="audio/mpeg">
Votre navigateur ne supporte pas la balise audio.
</audio>
<script src="js/monster.js"></script>
</body>
</html>