-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 1.53 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
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<header>
<title>Google From Scratch</title>
</header>
<link rel="stylesheet" type="text/css" href="css/style.css">
<body>
<nav class="nav-float-right">
<ul>
<div id="empty">
<a href="#">
L
</a>
</div>
</ul>
<ul>
<a href="#">
Images
</a>
</ul>
<ul>
<a href="#">
Gmail
</a>
</ul>
</nav>
<a href="#">
<div class="google-logo">
<p>
<span id="G1">G</span>
<span id="o2">o</span>
<span id="o3">o</span>
<span id="G4">g</span>
<span id="L5">l</span>
<span id="E6">e</span>
</p>
</div>
</a>
<form action="#" type="submit" >
<div id="search-box">
<input type="text">
</div>
<div id="google-button">
<input type="button" id="search-button" value="Google Search">
<input type="button" id="lucky-button" value="Feeling Lucky">
</div>
</form>
</body>
<footer>
<nav id="nav-footer">
<div class="footer-float-left">
<a href="#">
Advertising
</a>
<a href="#">
Bussiness
</a>
<a href="#">
About
</a>
</div>
<div class="footer-float-right">
<a href="#">
Privacy
</a>
<a href="#">
Term
</a>
<a href="#">
Setting
</a>
</div>
</nav>
</footer>
</html>