-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonster.html
49 lines (49 loc) · 1.93 KB
/
monster.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Monster Mayhem!</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link type="text/css" href="styles/monster.css" rel="stylesheet" />
<script src="js/jquery-2.0.3.js"></script>
<script src="js/monster.js" type="text/javascript"></script>
</head>
<body>
<header id="top">
<img src="ch05/end/images/Monster_Mashup.png" />
<p>Make your own monster face by clicking on the picture.</p>
</header>
<div id="container">
<img class="lightning" id="lightning1" src="ch05/end/images/lightning-01.jpg" />
<img class="lightning" id="lightning2" src="ch05/end/images/lightning-02.jpg" />
<img class="lightning" id="lightning3" src="ch05/end/images/lightning-03.jpg" />
<div id="frame">
<div id="pic_box">
<div id="head" class="face">
<img src="ch05/end/images/headsstrip.jpg">
</div>
<div id="eyes" class="face">
<img src="ch05/end/images/eyesstrip.jpg">
</div>
<div id="nose" class="face">
<img src="ch05/end/images/nosesstrip.jpg">
</div>
<div id="mouth" class="face">
<img src="ch05/end/images/mouthsstrip.jpg">
</div>
</div>
</div>
<div id="button_box">
<ul>
<button id="btnRandom">Randomize</button>
<button id="btnReset">Reset</button>
</ul>
</div>
</div>
</body>
</html>