-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
31 lines (27 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" contents="width=device-width, initial-scale=1.0">
<title>Tree Sortable</title>
<link href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="./css/all.min.css" />
<link href="./css/treeSortable.css" rel="stylesheet" />
<link href="./style.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
</head>
<body>
<div class="container">
<div class="wrapper">
<ul id="left-tree"></ul>
<ul id="right-tree"></ul>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/tippy.js@6/dist/tippy-bundle.umd.js"></script>
<script src="./js/treeSortable.js"></script>
<script src="./js/script.js"></script>
</body>
</html>