-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="icon" href="new-google-favicon-512.webp" type="image/gif" sizes="16x16">
</head>
<body>
<header>
<nav>
<div class="leftnav">
<a class="navlinks" href="#">About</a>
<a class="navlinks" href="#">Store</a>
</div>
<div class="rightnav">
<a class="navlinks" href="#">Gmail</a>
<a class="navlinks" href="#">Images</a>
<a class="navlinks" href="#" id="apps"></a>
<a class="navlinks" href="#" id="sign-in">Sign in</a>
</div>
</nav>
</header>
<main>
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo">
<form>
<div class="search-bar">
<span id="search-icon"><img src="images/search.svg" alt=""></span>
<input type="text" name="search" id="search">
<span id="voice-icon"><img src="https://www.gstatic.com/images/branding/googlemic/2x/googlemic_color_24dp.png" alt="Voice input"></span>
</div>
<div class="buttons">
<button>Google Search</button>
<button>I'm Feeling Lucky</button>
</div>
</form>
</main>
<footer>
<nav>
<div class="leftbottomnav">
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">About</a>
<a href="#">How Search works</a>
</div>
<div class="rightbottomnav">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</nav>
</footer>
</body>
</html>