-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (29 loc) · 1.12 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>collage template with draggable.js</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./draggable.css" />
</head>
<body>
<div id="target">
<img class="draggable caterpillar" src="./public/caterpillar.png" />
<h1 contenteditable class="draggable">edit me</h1>
<h1 class="draggable">I love eating leaves</h1>
</div>
<div id="header">
<img src="./public/leaf.png" class="spawner" />
<img src="./public/flower.png" class="spawner" />
<img src="./public/caterpillar.png" class="spawner" />
<img src="./public/daisy.png" class="spawner" />
<img src="./public/saffron.png" class="spawner" />
<img src="./public/sun.png" class="spawner" />
<img src="./public/sunflower.png" class="spawner" />
<img src="./public/bumblebee.png" class="spawner" />
<img src="./public/bee.png" class="spawner" />
</div>
<script type="module" src="./main.js"></script>
</body>
</html>