-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 961 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<title>Bezier</title>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-responsive.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<div class="sidebar-nav">
<ul class="nav nav-list">
</ul>
</div><!--/.well -->
</div><!--/span-->
<div class="span9" id="main">
<div class="row">
<h1>Bezier!</h1>
<canvas id="canvas"></canvas>
</div>
</div>
</div>
</div>
<body>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="point.js"></script>
<script src="curves.js"></script>
<script src="script.js"></script>