-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
41 lines (30 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css"></link>
<!-- Get the latest version of jQuery hosted by google -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div id="wrapper">
<div id="ga-header" class="clearfix">
<a target="_blank" href="https://generalassemb.ly/learn/web-development" title="Learn Web Development">
<img width="25" src="GA_cog_300px.png" />
</a>
</div>
<div id="content">
<div id="main">
<h1>Photo Mosaic Maker</h1>
<p class="directions">Type in a keyword or a string of words to make a photo mosaic from Flickr images.</p>
<form id="search-form">
<input type="text" id="keywords" />
<button>Go!</button>
</form>
</div> <!-- end #main -->
</div> <!-- end #content -->
<div id="tiles">
</div>
</div> <!-- end #wrapper -->
</body>
</html>