-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (43 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/google-homepage/css/style.css" >
<title>Google</title>
</head>
<body>
<nav>
<div id="navbar">
<a href="" id="about" >About</a>
<a href="" id="store" >Store</a>
<a href="" id="gmail" >Gmail</a>
<a href="" id="images">Images</a>
<a href="" id="menu"><img src="images/menu.png" alt="menu" style="padding-top: 10px; width:16px; height:16px;"></a>
<a href="" id="sign-in"><img src="images/googleaccount.jpg" alt="Sign in" style= "border-radius: 50%;padding-top: 2px; text-decoration: none; font-size: 85%;"></a>
</div>
</nav>
<main>
<div id="main">
<img src="images/googlelogo_color_272x92dp.png" alt="Google">
</div>
<div id="search">
<input type="text" id="search-box" style=" border-style: solid; border-color:rgb(199, 199, 199) rgb(199, 199, 199) rgb(199, 199, 199) rgb(199, 199, 199); border-radius: 20px;">
<img src="images/search-24px.svg" alt="icon" id="search-icon">
<img src="images/mic.png" alt="mic" id="mic">
</div>
<div id="buttonsearch">
<button id="google-search-btn" type="button">Google Search</button> <button id="random-search-btn" type="button">I'm Feeling Lucky</button>
</div>
</main>
<footer>
<div id="footer">
<a href="" id="advertising" >Advertising</a>
<a href="" id="business" > Business</a>
<a href="" id="how-search-works">How Search Works</a>
<a href="" id="privacy" >Privacy</a>
<a href="" id="terms" >Terms</a>
<a href="" id="settings" >Settings</a>
</div>
</footer>
</body>
</html>