-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-homepage.html
46 lines (39 loc) · 1.28 KB
/
google-homepage.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
<!doctype html>
<html>
<head>
<title>My Knockoff Google Homepage</title>
<link href="style.css" rel ="stylesheet" type ="text/css">
</head>
<body>
<nav id="header">
<ul>
<li><a href="">Gmail</a></li>
<li><a href="">Images</a></li>
<li><a href="">Apps</a></li>
<li><a href="">Sign In</a></li>
</ul>
</nav>
<div id="container">
<h1 id="logo">Google</h1>
<form>
<input type="text">
<input type="submit" value="Google Search">
<input type="submit" value="I'm Feeling Lucky">
</form>
<small>Election Day is tomorrow. <a href="">Find where to vote</a></small>
</div><!-- #container-->
<footer>
<nav class="clearfix">
<ul>
<li><a href="">Advertising</a></li>
<li><a href="">Business</a></li>
</ul>
<ul class="right-links">
<li><a href="">Privacy</a></li>
<li><a href="">Terms</a></li>
<li><a href="">Settings</a></li>
</ul>
</nav>
</footer>
</body>
</html>