forked from jeremydhoon/buildingblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildingblocks.html
46 lines (46 loc) · 1.56 KB
/
buildingblocks.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
<!DOCTYPE html>
<html>
<head>
<title>Building Blocks - HCS Boot Camp</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" type="text/javascript" language="javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js" type="text/javascript" language="javascript"></script>
<script src="building_blocks.js"></script>
<link href="building_blocks_styles.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="content">
<div id="title_holder">
<div id="left_block" class="block red"> </div>
<div id="page_title">
<h2>Building Blocks</h2>
</div>
<div id="right_block" class="block blue"> </div>
</div>
<div class="clear"></div>
<div id="instructions">
Drag blocks into the construction zone to stack them up.
Click on a block in the construction zone to remove it.
Use the links at the bottom to remove multiple blocks at once.
</div>
<div id="construction_zone_label" onselectstart="return false;"
onselectend="return false">
CONSTRUCTION ZONE
</div>
<div id="construction_zone">
</div>
<div id="clear_button_holder">
<a href="" id="clear_button">Clear</a>
<br/>
<a href="" id="remove_blue">Remove Blue</a> |
<a href="" id="remove_red">Remove Red</a> |
<a href="" id="remove_bottom">Remove Bottom Row</a>
</div>
<div id="footer">
<p>Brought to you by the
<a href="http://www.hcs.harvard.edu/">Harvard Computer Society</a>
</p>
</div>
</div>
</body>
</html>