-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (140 loc) · 3.67 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang= "en">
<head>
<link rel="stylesheet"
href=
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
@font-face {
font-family: 'Roboto', sans-serif;
src: url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
}
body{
font-family: sans-serif;
}
.header{
list-style-type:none;
margin-top:15px;
margin-left: 5px;
margin-right: 20px;
padding: 0;
overflow: hidden;
background-color: transparent;
}
li{
float: left;
}
#signin{
background-color:#3466d3;
}
li a {
display:block;
color:rgb(59, 59, 59);
text-align: center;
padding: 11px 14px;
text-decoration: none;
font-size: 12px;
}
li a:hover {
text-decoration:underline ;
}
#apps{
margin-right: 12px;
}
#logo {
margin-top: 145px;
margin-bottom: auto;
}
.search:hover{
box-shadow:0px 0px 8px 2px rgb(218, 218, 218);
}
.search{
border-radius: 25px;
border-style: solid;
width: 30%;
height: 40px;
margin-top:25px ;
background-color:transparent;
padding-left: 50px;
}
input[type=text]{
background-image:url(https://upload.wikimedia.org/wikipedia/commons/e/e9/Vector_search_icon.png);
background-repeat: no-repeat;
background-position: 15px 15px;
background-size:12px;
}
.button{
background-color: rgb(241, 241, 241);
color:rgb(109, 109, 109);
margin-top: 30px;
border-style: none;
padding: 10px 10px;
padding-right: 10px;
padding-left: 10px;
border-radius: 5px;
font-size: 14px;
font-family: sans-serif;
}
.button:hover{
border-style:solid;
border width: 1px;
color: black;
}
#signin a{
background-color:#5481e2;
color: white;
font-weight: bold;
}
.menufooter a{
font-size: 13px;
}
.menufooter{
list-style-type: none;
margin-top:5px;
margin-left: -20px;
}
.footerbox{
border-top: solid rgb(189, 189, 189) 1px;
position: absolute;
margin: 0;
width: 100%;
background-color:#ebebeb;
left: 0;
bottom:0;
}
</style>
</head>
<body>
<ul class="header">
<li><a class= "active" href="#about">About</a></li>
<li><a href="#store">Store</a> </li>
<li id="signin" style="float: right"><a href="#signin">Sign in</a></li>
<li id="apps" style="float:right"><a href="apps"><img src="https://image.flaticon.com/icons/svg/60/60991.svg" width="15" height="15"></a></li>
<li style="float: right;"><a href="#images">Images</a></li>
<li style="float: right;"><a href="#gmail">Gmail</a></li>
</ul>
<center>
<img id="logo" alt="google logo " src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
<div>
<input class="search" type="text">
</div>
</div>
<div>
<button class="button" type="button">Google Search</button>
<button class="button" type="button">I'm Feeling Lucky</button>
</div>
</center>
</body>
<footer>
<div class="footerbox">
<ul class="menufooter">
<li><a href="advertising">Advertising</a></li>
<li><a href="Business">Business</a> </li>
<li><a href="howsearchworks">How Search works</a></li>
<li style="float: right;"><a href="settings">Settings</a></li>
<li style="float: right;"><a href="terms">Terms</a></li>
<li style="float: right;" ><a href="privacy">Privacy</a></li>
</ul>
</ul>
</div>
</footer>