-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
60 lines (55 loc) · 1.57 KB
/
main.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
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Google Homepage</title>
<link rel="stylesheet" type="text/css" href="css/main-css.css" />
</head>
<body>
<header>
<nav>
<ul id="nav_bar">
<li class="nav-links" id="gmail"><a href="#">Gmail</a></li>
<li class="nav-links"><a href="#">Images</a></li>
<li id="sign_in"><a href="#">Sign In</a></li>
</ul>
</nav>
</header>
<!-- GOOGLE IMG -->
<div id="center">
<div class="google">
<img id="google_logo" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Logo">
</div>
<!-- FORM SEARCH -->
<div class="form">
<form>
<label for="form-search"></label>
<input
type="text"
id="form-search"
placeholder="Search Google or type URL"
/>
</form>
</div>
<!-- BUTTONS -->
<div class="buttons">
<button id="google_search">Google Search</button>
<button id="im_feeling_lucky">I'm Feeling Lucky</button>
</div>
</div>
<!-- FOOTER -->
<footer>
<ul class="footer-left">
<li><a href="#">Advertising</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">About</a></li>
</ul>
<ul class="footer-right">
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Settings</a></li>
</ul>
</footer>
</body>
</html>