-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.html
46 lines (38 loc) · 2.04 KB
/
game.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
<html>
<head>
<script src="http://alison.codeed.org/js/jquery-1.8.2.min.js"></script>
<script src="http://alison.codeed.org/js/jquery-ui-1.8.24.custom.min.js"></script>
<script src="game.js"></script>
<link href="main.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Drag and Drop The Tags to Make a Website</h1>
<div id="tags">
<div id="htmlOpen" class="ui-widget-content tag"><html></div>
<div id="htmlClose" class="ui-widget-content tag"></html></div>
<div id="headOpen" class="ui-widget-content tag"><head></div>
<div id="headClose" class="ui-widget-content tag"></head></div>
<div id="titleOpen" class="ui-widget-content tag"><title></div>
<div id="titleClose" class="ui-widget-content tag"></title></div>
<div id="bodyOpen" class="ui-widget-content tag"><body></div>
<div id="bodyClose" class="ui-widget-content tag"></body></div>
<div id="hOpen" class="ui-widget-content tag"><h1></div>
<div id="hClose" class="ui-widget-content tag"></h1></div>
</div>
<div id="dropzone">
<div id="htmlOpenDrop" class="droparea"></div>
<div id="htmlCloseDrop" class="droparea"></div>
<div id="headOpenDrop" class="droparea"></div>
<div id="headCloseDrop" class="droparea"></div>
<div id="titleOpenDrop" class="droparea"></div>
<div id="title">Title of the Web Site </div>
<div id="titleCloseDrop" class="droparea"></div>
<div id="bodyOpenDrop" class="droparea"></div>
<div id="bodyCloseDrop" class="droparea"></div>
<div id="hOpenDrop" class="droparea"></div>
<div id="hcontent">Heading of Our Website</div>
<div id="hcloseDrop" class="droparea"></div>
<div id="body">Cool website content!</div>
</div>
</body>
</html>