-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlevel_2.html
36 lines (33 loc) · 1.21 KB
/
level_2.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>JQuery example, level 2</title>
<link href="level_2.css" media="all" rel="stylesheet" type="text/css" />
<script src="ext/jquery.js" type="text/javascript"></script>
<script src="level_2.js" type="text/javascript"></script>
</head>
<body>
<div id="intro">
<h1>Choose a name :</h1>
<select id="name">
<option></option>
<option value="Marge">Marge</option>
<option value="Bart">Bart</option>
<option value="Lisa">Lisa</option>
<option value="Maggie">Maggie</option>
</select>
</div>
<div id="game">
<h1>Hello, <span class="name">Anonymous</span>, click on Homer to make him disappear !</h1>
<img class="good" src="ext/homer.png" />
<img class="bad" src="ext/burns.png" />
<img class="good" src="ext/homer.png" />
<img class="bad" src="ext/burns.png" />
<img class="good" src="ext/homer.png" />
<img class="bad" src="ext/burns.png" />
<img class="good" src="ext/homer.png" />
<img class="bad" src="ext/burns.png" />
</div>
</body>
</html>