-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/styles.css">
<!--
TODO: Add the google icon to the title bar.
-->
<title>Google</title>
</head>
<body>
<nav>
<ul class="left-nav">
<li class="link"><a href="https://about.google/" target="_blank">About</a></li>
<li><a href="https://store.google.com/" target="_blank">Store</a></li>
</ul>
<ul class="right-nav" >
<li class="link distinct-font"><a href="https://mail.google.com/" target="_blank">Gmail</a></li>
<li class="link distinct-font"><a href="https://www.google.com/imghp" target="_blank">Images</a></li>
<li class="link"><a href="#">
<img class="app-icon" src="images/app-icon.png" alt="App Icon">
</a>
</li>
<li><a href="https://accounts.google.com/" target="_blank">
<img class="avatar-icon" src="images/avatar.png" alt="App Icon">
</a>
</li>
</ul>
</nav>
<main>
<div class ="google-icon">
<img src="images/google-logo.png" alt="Google logo">
</div>
<form class = "search-bar" type="search" id="search">
<img class ="icon" src="images/search-icon.png" alt="Search icon">
<input type="text" placeholder="Search Google or type a URL"/>
<img class ="mic" src="images/mic-icon.png" alt="Microphone icon">
</form>
<section class="search-box">
<button type="button">Google Search</button>
<button type="button">I'm Feeling Lucky</button>
</section>
</main>
<footer>
<ul class="left-footer">
<li class="link"><a href="https://ads.google.com/" target="_blank">Advertising</a></li>
<li class="link"><a href="https://smallbusiness.withgoogle.com/" target="_blank">Business</a></li>
<li><a href="https://www.google.com/search/howsearchworks/" target="_blank">How Search Works</a></li>
</ul>
<ul class="right-footer">
<li class="link"><a href="https://policies.google.com/privacy" target="_blank">Privacy</a></li>
<li class="link"><a href="https://policies.google.com/terms" target="_blank">Terms</a></li>
<li><a href="https://support.google.com/websearch/" target="_blank">Settings</a></li>
</ul>
</footer>
</body>
</html>