-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 1.73 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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
</head>
<body>
<header>
<nav>
<div class="menu">
<a href="#">
<div>Gmail</div>
</a></li>
<a href="#">
<div>Images</div>
</a></li>
<a href="#">
<div id="apps"><img src="images/apps.png" alt=""></div>
</a>
<a href="#">
<div id="signin">Sign in</div>
</a>
</div>
</nav>
</header>
<section>
<div class="logo"><img src="images/googlelogo.png" alt="google"></div>
<div class="glesearchbar">
<div id="glesearchicon"> <img src="images/search.png" alt="search"></div>
<input type="text" id="glesearchbox">
</div>
<div class="glebuttons">
<a href="#">
<div>Google Search</div>
</a>
<a href="#">
<div>I'm Feeling Lucky</div>
</a>
</div>
</section>
<footer>
<div>Angola</div>
<div class="footerright">
<div><a href="#">Privacy</a></div>
<div><a href="#">Terms</a></div>
<div><a href="#">Settings</a></div>
</div>
<div class="footerleft">
<div><a href="#">Advertising</a></div>
<div><a href="#">Business</a></div>
<div><a href="#">About</a></div>
<div><a href="#">How Search Works</a></div>
</div>
</footer>
</body>
</html>