-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.67 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Google</title>
<meta name="description" content="Imitation Google search page">
<meta name="author" content="Jay Conner">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul id="top_navbar">
<li><a href="https://about.google">About</a></li>
<li><a href="https://store.google.com">Store</a></li>
<li class="li-right"><a href="https://mail.google.com">Gmail</a></li>
<li class="li-right"><a href="https://images.google.com">Images</a></li>
</ul>
<div id="search_form_box">
<form id="search_form" action="#">
<img id="google_logo" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"><br>
<input id="search_field" type="text" name="search_terms"> <br>
<input type="submit" class="wide_button" value="Google Search">
<input type="submit" class="wide_button" value="I'm Feeling Lucky">
</form>
</div>
<ul id="footer">
<li><a href="https://ads.google.com">Advertising</a></li>
<li><a href="https://business.google.com">Business</a></li>
<li class="li-right"><a href="https://google.com/search/howsearchworks/?fg=1">How Search Works</a></li>
<li class="li-right"><a href="safety.google">Privacy</a></li>
<li class="li-right"><a href="settings.google.com">Settings</a></li>
</ul>
<script src="" async defer></script>
</body>
</html>