-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<title>Google</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="page-cntnr">
<nav>
<p>Gmail</p>
<p>Images</p>
<div id="nav-menu-cntnr">
<img id="nav-menu" src="images/grid-menu.svg" alt="3x3 grid menu">
</div>
<img id="nav-dp" src="images/profile-picture.png" alt="User's profile picture">
</nav>
<main>
<img src="images/google-logo.png" alt="Google Logo">
<div id="search-cntnr">
<img id="search-icon" src="images/search.svg" alt="search icon">
<input id="search-box" type="text">
<img id="mic-icon" src="images/google-mic.png" alt="mic icon">
</div>
<div id="option-cntnr">
<input type="button" value="Google Search" onclick="window.location='search.html';">
<input type="button" value="I'm Feeling Lucky">
</div>
<p>Google offered in: <span>Filipino</span><span>Cebuano</span></p>
</main>
<footer>
<span id="footer-country">Philippines</span>
<hr>
<div id="list-cntnr">
<ul>
<li>About</li>
<li>Advertising</li>
<li>Business</li>
<li>How Search works</li>
</ul>
<ul>
<li>Privacy</li>
<li>Terms</li>
<li>Settings</li>
</ul>
</div>
</footer>
</div>
</body>
</html>