-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<title>Google</title>
<link rel="favorite icon" href="favicon.ico" />
<link rel="stylesheet" href="stylesheets/styles.css" type="text/css" />
</head>
<nav>
<ul class="top-nav">
<li class="username">Brett</li>
<li class="top-link"><a href="#">Gmail</a></li>
<li class="top-link"><a href="#">Images</a></li>
<li class="apps">
<div class="apps-icon"></div>
</li>
<li class="notifications">
<div class="little-bell"></div>
</li>
<li class="profile">
<div class="profile-image"></div>
</li>
</ul>
</nav>
<body>
<div class="center">
<div class="logo-big">
<img src="images/google_logo.png" alt="Google" height="92px" width ="272px"></img>
</div>
<div class="search-form">
<form class="google-search" action="https://google.com/search?q">
<div class="search-area">
<input type="text" name="q"/>
<div class="microphone"></div>
</div>
<div class="submit-buttons">
<input type="submit" class="submit" value="Google Search"/>
<input type="submit" class="submit" value="I'm Feeling Lucky"/>
</div>
</form>
</div>
<div class="promo-link">
<a href="#">Meet OnHub</a>, the home router for fast, simple, secure Wi-Fi.
</div>
</div>
</body>
<footer>
<span class="left-links">
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">About</a>
</span>
<span class="right-links">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</span>
</footer>
</html>