-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<title>Google's Homepage</title>
</head>
<body>
<header>
<nav>
<a href="#">Gmail</a>
<a href="#">Images</a>
<img src="imgs/apps.png" alt="menu icon" id="menu-img">
<a href="#" id="sign-button">Sign in</a>
</nav>
</header>
<div id="container">
<div id="content">
<img alt="Google" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
<br>
<form action="">
<label for="search-bar"><input type="text" name="search-bar" id="search-bar"></label>
<br>
<label for="search-button1"><input type="submit" name="search-button1" value="Google Search" id="button1"></label>
<label for="search-button2"><input type="submit" name="search-button2" value="I'm Feeling Lucky" id="button2"></label>
</form>
<img id="search-icon" src="imgs/search.png" alt="Search icon">
<img id="mic-icon" src="imgs/mic.png" alt="Mic icon">
</div>
</div>
<footer>
<div class="footer-content">
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">About</a>
<a href="#">How Search works</a>
</div>
<div class="footer-content">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</footer>
</body>
</html>