-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Draft your future!</title>
<!-- custom js & css -->
<script src="js/main.js" type="text/javascript" charset="utf-8"></script>
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
<!-- External libraries -->
<!-- jQuery -->
<script src="incl/jqueryui/js/jquery-1.7.2.min.js" type="text/javascript" charset="utf-8"></script>
<!-- jQueryUI -->
<script src="incl/jqueryui/js/jquery-ui-1.8.23.custom.min.js" type="text/javascript" charset="utf-8"></script>
<link href="incl/jqueryui/css/smoothness/jquery-ui-1.8.23.custom.css" rel="stylesheet" type="text/css" media="all">
<!-- jQuery mousewheel -->
<script src="incl/jquery-mousewheel-3.0.6/jquery.mousewheel.min.js" type="text/javascript" charset="utf-8"></script>
<!-- zoomooz -->
<script src="incl/zoomooz/jquery.zoomooz.min.js"></script>
</head>
<body>
<div id='menu'>
<button id="create_btn">Create object</button>
</div>
<div id='timeline'></div>
</body>
<script type="text/javascript">
$(document).ready(function() {
fd_main();
});
</script>
</html>