-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.16 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Orderability</title>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<style>
h1,div.list {
margin: 10px;
}
.sorter {
margin: 10px;
background: pink;
width: auto;
height: 100px;
}
form {
margin: 5px;
}
table.items {
margin: 5px;
border: 1px solid black;
}
table.items td {
border: 1px solid black;
padding: 3px;
}
td.option {
border: 1px solid blue;
padding: 3px;
}
</style>
</head>
<body>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/react-with-addons.js"></script>
<script src="js/paper.js"></script>
<div>
<h1>Orderability</h1>
<div id='list'></div>
<div id='sorter'></div>
</div>
<script src="js/view.js"></script>
</body>
</html>