-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.23 KB
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
<!DOCTYPE html>
<html>
<!--
code/abby/something/over/here =>
/something/over/here
because code/abby is the "root" of the webserver
-->
<head>
<title></title>
<link rel="stylesheet" media="screen" href="/css/style.css"/>
<script src="/js/lib/jquery-2.1.1.min.js"></script>
<script src="/js/lib/packery.pkgd.min.js"></script>
<script src="/js/lib/draggabilly.pkgd.min.js"></script>
<script src="/js/main.js"></script>
</head>
<body>
<h1>Packery demo - Draggabilly</h1>
<div class="packery">
<div class="item w4 h2"></div>
<div class="item w2 h2"></div>
<div class="item w2 h4"></div>
<div class="item w2 h2"></div>
<div class="item w4 h4"></div>
<div class="item w2 h2"></div>
<div class="item w2 h4"></div>
<div class="item w4 h4"></div>
<div class="item w2 h2"></div>
<div class="item w2 h2"></div>
<div class="item w2 h2"></div>
<div class="item w4 h4"></div>
<div class="item w2 h2"></div>
<div class="item w2 h4"></div>
<div class="item w4 h4"></div>
<div class="item w2 h2"></div>
<div class="item w2 h2"></div>
</div>
<p>hello my name is abby. hello world</p>
</body>
</html>