-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 1.48 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
<!--
Google Clone
Clone of Google's homepage as part of the Thinkful FEWD Curriculum
@package GoogleClone
@author Trevor Nowalk
@license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
@since Version 1.0
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Google Clone</title>
<link rel='stylesheet' href='assets/css/reset.css'>
<link rel='stylesheet' href='assets/css/main.css'>
</head>
<body>
<div id='header'>
<ul id='mainNav'>
<li><a href='#'>+You</a></li>
<li><a href='#' class='active'>Search</a></li>
<li><a href='#'>Images</a></li>
<li><a href='#'>Maps</a></li>
<li><a href='#'>Play</a></li>
<li><a href='#'>YouTube</a></li>
<li><a href='#'>News</a></li>
<li><a href='#'>Gmail</a></li>
<li><a href='#'>Drive</a></li>
<li><a href='#'>Calendar</a></li>
<li><a href='#'>More</a></li>
</ul>
</div>
<div id='content'>
<div id='signinButton'>Sign In</div>
<div class='clear'></div>
<div id='logo'>
<img src='assets/img/logo4w.png' alt='Google' />
</div>
<input type='text' id='searchBar' />
<div id='buttons'>
<button type='button'>Google Search</button>
<button type='button'>I'm Feeling Lucky</button>
</div>
</div>
<div id='footer'>
<ul id='footerNav'>
<li>Advertising Programs</li>
<li>Business Solutions</li>
<li>Privacy & Terms</li>
<li>+Google</li>
<li>About Google</li>
</ul>
</div>
</body>
</html>