-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (80 loc) · 3.44 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html>
<head>
<title>Instagram API</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href='http://fonts.googleapis.com/css?family=Quattrocento+Sans:400,400italic' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="container">
<div id="column-1">
<div class="button" id="homeButton"><h3>Home</h3></div>
<div class="button" id="savedButton"><h3>Saved</h3></div>
<div class="button" id="greyButton"> <h3>Grey</h3> </div>
<div class="button" id="sepiaButton"> <h3>Sepia</h3> </div>
<div class="button" id="invertButton"><h3>Invert</h3> </div>
<div class="button" id="blurButton"> <h3>Blur</h3> </div>
<div class="button" id="saturateButton"><h3>Saturate</h3></div>
</div>
<div id="header">
<img src= "coloriserrrr.png" alt="coloriserrr logo"/>
</div>
<div id="frontpage">
<div class="header">
<h3 id="instructions">
Pick a photo, find them in <span id="saved">Saved</span>. Apply your favourite filters!
</h3>
<h3 id='tag-title'>#TAG</h3>
<div class="style-2">
<input id="input" type="text" name="hashtag" autofocus onkeydown="if (event.keyCode == 13) document.getElementById('search-button').click()">
</div>
<button id="search-button" onclick="tagUpdate()"> Get yo' tag </button>
<p id='sad'>There doesn't seem to be anything here! :(</p>
</div>
<div id="photo-grid">
<table>
<tr>
<td id='pic0' class='pics'></td>
<td id='pic1' class='pics'></td>
<td id='pic2' class='pics'></td>
<td id='pic3' class='pics'></td>
</tr>
<tr>
<td id='pic4' class='pics'></td>
<td id='pic5' class='pics'></td>
<td id='pic6' class='pics'></td>
<td id='pic7' class='pics'></td>
</tr>
<tr>
<td id='pic8' class='pics'></td>
<td id='pic9' class='pics'></td>
<td id='pic10' class='pics'></td>
<td id='pic11' class='pics'></td>
</tr>
<tr>
<td id='pic12' class='pics'></td>
<td id='pic13' class='pics'></td>
<td id='pic14' class='pics'></td>
<td id='pic15' class='pics'></td>
</tr>
<tr>
<td id='pic16' class='pics'></td>
<td id='pic17' class='pics'></td>
<td id='pic18' class='pics'></td>
<td id='pic19' class='pics'></td>
</tr>
</table>
</div>
</div>
<div id="filterpage" class="hidden">
<div id ="column-2">
<div id="clearButton"><h3>Clear</h3></div>
</div>
<div id="selectedphotoholder" class="">
</div>
</div>
</div>
<script src="javascript/headers-callbacks.js"></script>
</body>
</html>