-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.89 KB
/
index.html
File metadata and controls
50 lines (48 loc) · 1.89 KB
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
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Filters</title>
<meta charset="utf-8" />
<!-- CSS -->
<link rel="stylesheet" href="NOTOUCH/css/normalize.css" />
<link rel="stylesheet" href="NOTOUCH/css/style.css" />
</head>
<body>
<div id="canvases">
<canvas id="image-canvas" width="600px" height="400px"></canvas>
</div>
<img alt="1" src="images/nighttime.jpg" />
<img alt="2" src="images/stanford.jpg" />
<img alt="3" src="images/Grays.jpg" />
<img alt="4" src="images/Benedict Cumberbatch.jpg" />
<img alt="5" src="images/JGL.jpg" />
<div id="footer">
<!--
<a href="#" id="f_gry" class="button">Greyscale</a>
<a href="#" id="f_vgt" class="button">Vignette</a>
<a href="#" id="f_crv" class="button">Color Curve</a>
<a href="#" id="f_rbw" class="button">Rainbow</a>
<a href="#" id="f_per" class="button">Your Invention</a>
-->
<center>
<a href="#" id="f_stt" class="button">Starter</a>
<a href="#" id="f_tnt" class="button">Tint</a>
<a href="#" id="f_gry" class="button">Greyscale</a>
<a href="#" id="f_per" class="button">Your Invention</a>
</center>
</div>
<div id="footer1">
<a href="#" id="reset" class="button">Reset</a>
</div>
<div id="photos">
<a href="#" id="photo1" class="button">Image1</a>
<a href="#" id="photo2" class="button">Image2</a>
<a href="#" id="photo3" class="button">Image3</a>
<a href="#" id="photo4" class="button">Image4</a>
<a href="#" id="photo5" class="button">Image5</a>
</div>
<!-- JS -->
<script src="filters.js"></script>
<script src="NOTOUCH/js/UIandHelperFunctions.js"></script>
</body>
</html>