-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle.html
More file actions
182 lines (180 loc) · 3.28 KB
/
Copy pathgoogle.html
File metadata and controls
182 lines (180 loc) · 3.28 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html>
<head>
<title>Google</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="i" href="image\icon.jpg">
<style>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
nav {
display: flex;
justify-content: flex-end;
margin-right: 30px;
margin-top: 14px;
}
nav a {
font-size: 10px;
display: inline-block;
line-height: 20px;
font-weight: 300;
cursor: pointer;
padding: 5px 6.7px
}
nav img {
width: 2.5%;
padding: 5px;
margin: auto 7px;
cursor: pointer;
}
nav button {
border: 1px blue;
font-weight: bold;
background: blue;
color: white;
cursor: pointer;
}
*{box-sizing: border-box;
font-family: Times New Roman;
}
.s1 {
flex: 1;
}
.s1 .lg {
display: block;
margin: 0px auto;
margin-top: 107px;
}
.se {
width: 40%;
margin: 0px auto;
position: relative;
text-align: center;
}
.se .s-input {
display: block;
border: 1px solid #ddd;
font-size: 16px;
padding: 13px;
padding-left: 45px;
border-radius: 25px;
width: 100%;
transition: box-shadow 100ms;
}
.se .s-input:hover {
border: 1px black;
}
.se .si {
width: 5%;
position: absolute;
top: 13px;
left: 14px;
}
.se .mic {
width: 14px;
position: absolute;
top: 13px;
right: 24px;
}
.s-btn {
border: 1px solid transparent;
padding: 9px 15px;
color: #666;
font-size: 14px;
border-radius: 4px;
display: inline-block;
margin-right: 10px;
margin-top: 28px;
cursor: pointer;
transition: border-color 100ms;
}
.s-btn:hover {
border: 1px solid #aaa;
}
.lang {
margin-top: 30px;
text-align: center;
font-size: 13px;
color: #111;
}
.lang a {
margin-left: 5px;
color: #1a0dab;
}
.lang a:hover {
text-decoration: underline;
}
footer {
background: lightgrey;
}
footer h4 {
font-size: 15px;
line-height: 35px;
font-weight: 400;
padding-left: 20px;
border: 1px solid #eee;
}
footer a {
color: #5f6368;
display: inline-block;
padding: 12px 11.3px;
font-size: 14px;
}
.ln {
border-top: 1px solid #ddd;
display: flex;
}
.l1 {
padding-left: 18.7px;
flex: 1;
}
.l2 {
padding-right: 18.7px;
}
</style>
</head>
<body>
<nav>
<a href="#">Gmail</a>
<a href="#">Images</a>
<img src="image\mu.png">
<button>Sign in</button>
</nav>
<section class="s1">
<img src="image/lo.png" class="lg">
<form><br><br>
<div class="se">
<img src="image/s.svg" class="si">
<input type="text" class="s-input">
<img src="image/mic.png" class="mic">
<input type="submit" class="s-btn" value="Google Search">
<input type="submit" class="s-btn" value="Feeling happy">
</div>
</form>
<div class="lang">
Google offered in:
<a href="#">English</a>
<a href="#">Hindi</a>
<a href="#">punjabi</a>
<a href="#">Japanese</a>
<a href="#">Marathi</a>
</div>
</section>
<footer>
<h4>English</h4>
<div class="ln">
<div class="l1">
<a href="#">About Google</a>
<a href="#">Help</a>
</div>
<div class="l2">
<a href="#">Privacy</a>
<a href="#">Settings</a>
</div>
</div>
</footer>
</body>
</html>