-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (63 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.central {
text-align: center;
}
#logo{
padding-top: 150px;
}
a {
text-decoration: none;
color: #000;
}
#topnav {
text-align: right;
padding: 0 20px 0 20px;
}
#bottomnav {
text-align: left;
align: bottom;
padding: 0 20px 0 20px;
}
ul{
list-style-type: none;
margin: 0;
padding: 0px;
background-color: #fff;
}
li {
display: inline;
padding-left: 10px;
}
#signin {
background-color: #4285f4;
padding: 5px;
}
</style>
</head>
<body>
<ul id="topnav">
<li><a href="#">Gmail</a></li>
<li><a href="#">Images</a></li>
<li id="signin"><a href="#">Sign in</a></li>
</ul>
<div class="central">
<img id="logo" src="https://www.google.ie/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"/>
<br>
<br>
<form style=""method="get" name="search">
<input style="width:500px;"type="text" >
<br>
<br>
<input type="submit" value="Google Search"><input type="submit" value="I'm Feeling Lucky">
</form>
</div>
<ul id="bottomnav">
<li><a href="#">Advertising</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">About</a></li>
</ul>
</body>
</html>