-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Photo editor</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./css/bootstrap-theme.css">
<script type="text/javascript" src="./scripts/jquery-1.12.1.js"></script>
<script type="text/javascript" src="./scripts/bootstrap.js"></script>
<script type="text/javascript" src="./scripts/functions.js"></script>
</head>
<body>
<div id="wrap">
<div id="header">
<h1> HTML5 Canvas Photo Editor </h1>
</div>
<div id="main">
<canvas id="cc"></canvas>
</div>
<div id="sidebar">
<div class="list-group">
<a id = "bBlur" class="list-group-item">Blur</a>
<a id = "bSharp" class="list-group-item">Sharp</a>
<a id = "bBurn" class="list-group-item">Burn</a>
<a id = "bDodge" class="list-group-item">Dodge</a>
<a id = "bSobel" class="list-group-item">Sobel</a>
<a id = "bCrop" class="list-group-item">Crop</a>
<a id = "bColorPicker" class="list-group-item">Color Picker</a>
<a id = "bBrush" class="list-group-item">Brush</a>
<a id = "bSaturate" class="list-group-item">Saturate</a>
<a id = "bDesaturate" class="list-group-item">Desaturate</a>
</div>
</div>
<div id="footer">
Created by so and so
</div>
</div>
</body>
</html>