-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (68 loc) · 1.62 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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Google</title>
</head>
<body>
<div id="navBar">
<ul>
<li>
<img id="profilePic" src="profilePic.png">
</li>
<li>
<img id="notification" src="notifications.png">
</li>
<li>
<a href="http://www.google.com/intl/en/about/products/">
<img src="blocks.png">
</a>
</li>
<li>
<a href="https://www.google.com/imghp">images</a>
</li>
<li>
<a href="http://mail.google.com">gmail</a>
</li>
<li>
<a href="http://plus.google.com">John</a>
</li>
</ul>
</div>
<img id="logo" src="googlelogo.png" width="272" height="92" alt="Google Logo">
<div id="searchBar">
<form>
<input type="text" name="search">
</form>
</div>
<div id="searchOptions">
<div class="button">Google Search</div>
<div class="button">I'm Feeling Lucky</div>
</div>
<div id="bottomBar">
<ul id="bottomLeft">
<li>
<a href="https://www.google.com/intl/en/about.html?fg=1">About</a>
</li>
<li>
<a href="https://www.google.com/services/?fg=1">Business</a>
</li>
<li>
<a href="https://www.google.com/intl/en/ads/?fg=1">Advertising</a>
</li>
</ul>
<ul id="bottomRight">
<li>
<a href="https://www.google.com/preferences?hl=en">Settings</a>
</li>
<li>
<a href="https://www.google.com/intl/en/policies/terms/?fg=1https://www.google.com/preferences?hl=en">Terms</a>
</li>
<li>
<a href="https://www.google.com/intl/en/policies/privacy/?fg=1">Privacy</a>
</li>
</div>
</div>
</body>
</html>