-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 976 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Drag and Drop</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<span>Drag and Drop Items Between Two Containers.</span>
<div class="container">
<div class="left dropable">
<div draggable="true" id="box1" class="box">Kanishk</div>
<div draggable="true" id="box2" class="box">Dev</div>
<div draggable="true" id="box3" class="box">Kuldeep</div>
<div draggable="true" id="box4" class="box">Vraj</div>
<div draggable="true" id="box5" class="box">Prince</div>
<div draggable="true" id="box6" class="box">Jems</div>
</div>
<div class="right dropable"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>