-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Google Homepage</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="topnav">
<ul>
<li class="icon3"><img style="border-radius: 32px" src="me.jpg" alt=""></li>
<li class="icon2"><img src="bell.png"></li>
<li class="icon1"><img src="squares.png" alt=""></li>
<li><a href="#">Images</a></li>
<li><a href="#">Gmail</a></li>
<li style="color: #aaaaaa">Christine</li>
</ul>
</div> <!--topnav-->
<div class="container">
<div id="google">
<img src="googlelogo.png" alt="Google" />
<div class="logo-sub">Canada</div>
</div> <!-- google-->
</div> <!-- container -->
<div class="container">
<div id="searchform">
<form>
<input type="textarea" name="searchbox" style="width: 484px; height:38px;"></input>
<input class="btn btn-left" type="submit" value="Google Search"> </input>
<input class="btn btn-right" type="submit" value="I'm Feeling Lucky"></input>
</form>
<p>Google.ca offered in <a href="#">Français</a></p>
</div> <!--searchform -->
</div> <!--container-->
<div id="footer">
<ul >
<li class="ftr"> <a href="#">Advertising</a></li>
<li class="ftr"><a href="#">Business</a></li>
<li class="ftr"><a href="#">About</a></li>
<li class="ftr" style="float:right"><a href="#">Settings</a></li>
<li class="ftr" style="float:right"><a href="#">Terms</a></li>
<li class="ftr" style="float: right"><a href="#">Privacy</a></li>
</ul>
</div>
</body>
</html>