-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.8 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
<!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 homepage</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="assets/styles/style.css" type="text/css" media="screen">
</head>
<body>
<div class="container">
<div id="header">
<div id="header-elements">
<p class="head-element" id="gmail">Gmail</p>
<p class="head-element" id="images">Images</p>
<span class="material-icons head-element" id="apps-icon">apps</span>
<button class="head-element" id="sign-in-button">Sign in</button>
</div>
</div>
<div id="main-elements">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="google logo" id="google-logo">
<div id="search">
<span class="material-icons" id="search-icon">search</span>
<span class="material-icons" id="voice-icon">settings_voice</span>
<input type="text" id="input-text">
</div>
<button class="search-button">Google search</button>
<button class="search-button">I'm Feeling Lucky</button>
</div>
<footer>
<div id="footer-elements">
<p class="footer-element" id="about">About</p>
<p class="footer-element" id="advertising">Advertising</p>
<p class="footer-element" id="business">Business</p>
<p class="footer-element" id="how-search-works">How Search works</p>
</div>
</footer>
</div>
</body>
</html>