-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (76 loc) · 2.68 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<style>
#logo {
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 109px;
}
#input-container {
position: relative;
border: none;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 15px;
padding-top: 20px;
padding-right: 150px;
}
#input-container > img {
position: relative;
top: 5px;
left:506px;
width: 20px;
height: 20px;
padding-left: 143px;
float: left;
}
#input-container > input {
padding-left: 40px;
width: 582px;
}
ul {
list-style-type: none;
margin: 0;
padding: 10;
}
li {
display: inline-block;
padding: 6;
}
#header-1 {
left: 0;
top: 8;
}
#header-2 {
right: -13;
top: 8;
}
</style>
<title> Google</title>
</head>
<div id="navbar">
<ul id="header-1">
<li id='link'><a href="https://web.archive.org/web/20191130234759/https://about.google/?fg=1&utm_source=google-US&utm_medium=referral&utm_campaign=hp-header">About</a></li>
<li id='link'><a href="https://web.archive.org/web/20191130234759/https://store.google.com/US?utm_source=hp_header&utm_medium=google_ooo&utm_campaign=GS100042&hl=en-US">Store</a></li>
</ul>
<ul id="header-2">
<li id='link'><a href="https://web.archive.org/web/20191130234759/https://mail.google.com/mail/?tab=wm&ogbl">Gmail</a></li>
<li id='link'><a href="https://web.archive.org/web/20191130234759/https://www.google.com/imghp?hl=en&tab=wi&ogbl">Images</a></li>
</ul>
</div>
<center>
<div id = "logo">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
</div>
<form>
<div id="input-container">
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-search-strong-128.png">
<input type="text" name="usrnm">
</div>
</form>
</center>
</div>
</html>