-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 854 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
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Flickr Search Tool</title>
<script src="jquery-2.2.3.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css" charset="utf-8">
</head>
<body>
<div id="wrapper">
<div id="sidebar">
<button id="search-button" >Find Images</button>
<h2>Tags</h2>
<div id="tags">
<input class="tag-term"></input>
</div>
<div id="addbtn"><button id="add-button">+</button></div>
</div>
<div id="gallery-container">
<div id="outer">
<div id="left-move"><center><</center></div>
<div id="right-move"><center>></center></div>
<div id="inner"></div>
</div>
<div id="main-image"></div>
</div>
</div>
</body>
</html>