-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<nav>
<div class="links-wrapper">
<a href="#">Gmail</a>
<a href="#">Images</a>
</div>
<a href="#"><img id="menu-image" src="images/menu-icon/iconfinder_ic_apps_48px_352018.png" alt=""></a>
<a href="#"><img id="profile-image" src="https://avatars.githubusercontent.com/u/55425610?v=4"
alt="Profile Image"></a>
</nav>
<div class="main-logo">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo">
</div>
<form action="#" class="search">
<label for="search-box"><input type="text" id="search-box"></label>
<div class="icons">
<a href="#" id="search-icon"><img src="images/search-icon/1x/outline_search_black_24dp.png"></a>
<a href="#" id="mic-icon"><img src="images/mic-icon/1x/outline_mic_black_24dp.png"></a>
</div>
</form>
<div class="buttons">
<button class="search-btn">Google Search</button>
<button class="feeling-lucky-btn">I'm Feeling Lucky</button>
</div>
<footer>
<div class="right-footer">
<a href="#">About</a>
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">How Search Works</a>
</div>
<div class="left-footer">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</footer>
</body>
</html>