-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.77 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="style.css">
</head>
<html>
<body>
<header>
<nav>
<a href="#">About</a>
<a href="#">Store</a>
<a href="#">Gmail</a>
<a href="#">Images</a>
<span class="material-symbols-outlined">apps</span>
<span class="material-symbols-outlined">account_circle</span>
</nav>
</header>
<main>
<img alt="Google's Logo, the letters G O O G L E" src="googlebackground.png">
<div class="search">
<input type="search" id="searchbar" name="searchbar" class="search">
<a href="#"><span class="material-symbols-outlined search-ic-left" id="search">search</span></a>
<a href="#"><span class="material-symbols-outlined" id="mic">mic</span></a>
</div>
<div class="search-button">
<input type="button" value="Google Search" />
<input type="button" value="I'm Feeling Lucky" />
</div>
</main>
<footer>
<div class="carbon-neutral">
<span class="material-symbols-outlined">eco</span>
<p>Carbon neutral since 2007</p>
</div>
<div class="footer-links">
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">How Search works</a>
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</footer>
</body>
</html>