-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Google</title>
<link rel="stylesheet" type="text/css" href="css/cssreset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/jsfile.js"></script>
</head>
<body>
<div class="main-container">
<header>
<nav>
<ul>
<li><a href="#">Gmail</a></li>
<li class="google-images"><a href="#">Images</a></li>
</ul>
<a class="google-products" href="#" title="Google apps" aria-expanded="false" role="button" tabindex="0"></a>
<a href="#" class="user-link"><img class="user-image" title="Google Account: Odin ([email protected])" src="https://www.theodinproject.com/assets/odin-logo-94557650fea28e24cc04263ece9c08ab5956e0d344faa4d03cdb732e9f9983d4.svg" alt="User image"></a></li>
</nav>
</header>
<div class="middle-container">
<img class="logo" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo">
<div class="search-bar">
<div class="search-glass-container">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
d="M15.5 14h-.79l-.28-.27A6.471
6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59
4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01
14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99
14 9.5 14z"
></path>
</svg>
</div>
<div class="search-input-container">
<input class="search-input" type="text" name="searchbar" autofocus>
</div>
<div class="search-mic-container">
<img id="search-mic" src="https://www.gstatic.com/images/branding/googlemic/2x/googlemic_color_24dp.png" alt="mic logo">
</div>
</div>
<div class="search-buttons">
<button type="button" class="button-left">Google Search</button>
<button type="button">I'm Feeling Lucky</button>
</div>
</div>
<footer>
<div class="footer-left">
<div><a href="#">Advertising</a></div>
<div><a href="#">Business</a></div>
<div><a href="#">About</a></div>
<div><a href="#">How Search Works</a></div>
</div>
<div class="footer-right">
<div><a href="#">Privacy</a></div>
<div><a href="#">Terms</a></div>
<div><a href="#">Settings</a></div>
</div>
</footer>
</div>
</body>
</html>