-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 985 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
<!DOCTYPE html>
<html>
<head>
<title>Search Etsy!</title>
<link rel='stylesheet' type='text/css' href='style.css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<div id='container'>
<div class='header'>Etsy search-o-rama</div>
<form id='search-form'>
<input id='search-form-input' placeholder='example: "cthulhu hat"' type='text'></input>
<button class='submit'>Find me some handmade goodies!</button>
</form>
<div id='spinner'><img src='ajax-loader.gif'></div>
<div id='results'></div>
</div>
<div id='lightbox'>
<span id='lightbox-close' class='fa fa-close'></span>
<div id='lightbox-content'></div>
</div>
<div id='overlay'></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src='config.js'></script>
<script type="text/javascript" src='main.js'></script>
</body>
</html>