-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 957 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (24 loc) · 957 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
<DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, target-densitydpi=device-dpi" />
<title>The Drag ‘n Droppery</title>
<link href="css/index.css" media="screen" rel="stylesheet" />
</head>
<body>
<section class="container">
<section class="wrapper center master-detail-col vertical-align">
<article class="col">
<h1>The Drag ‘n Droppery</h1>
<p>
by <a href="http://mynameissterling.com/" target="_blank">Sterling Salzberg</a>
</p>
</article>
<ul id="draggable-items" class="col inline-list"></ul>
</section>
</section>
<script type="text/javascript" src="js/images_model.js"></script>
<script type="text/javascript" src="js/dom_explorer.js"></script>
<script type="text/javascript" src="js/drag_n_drop.js"></script>
</body>
</html>