-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.08 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
33
34
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Simple Drag and Drop Test</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div id="container">
<h1>Simple Drag and Drop Test</h1>
<p>Drag color box into drop area.</p>
<ul id="dragElements" class="clearfix">
<li draggable="true" id="blueBox">Blue Box</li>
<li draggable="true" id="turquoiseBox">Turquoise box</li>
<li draggable="true" id="greenBox">Green box</li>
<li draggable="true" id="yellowBox">Yellow box</li>
<li draggable="true" id="orangeBox">Orange box</li>
<li draggable="true" id="resetBox">Reset box</li>
</ul>
<div id="dropAreaBox">Drop color box Here!</div>
<p>Drag a <span id="spanText">.txt </span> file from your computer onto the drop target.</p>
<div id="dropAreaText">Drop a .txt file here</div>
<pre></pre>
<span></span>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>