-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle.html
38 lines (37 loc) · 951 Bytes
/
google.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
<html>
<body>
<meta charset='utf-8'>
<title>谷歌</title>
<sty type=“text/css”>
<div class="form">
<img src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_160x56dp.png" class='img'>
<form action="https://www.google.com/search" method="get">
<input type="text" name="q" value='' style="width:545px;height:35px"></input>
<input type="submit" value="搜索" class='btn'>
</form>
</div>
<style type="text/css">
.form{
position: absolute;
text-align: center;
top: 35%;
left: 35%;
margin-top: 0px;
margin-left: -100px;
font-family:"微软雅黑","黑体","宋体";
}
.btn{
width: 54px;
height: 35px;
line-height: 32px;
background: none;
background-color: #38f;
font-size: 16px;
color: white;
box-shadow: none;
font-weight: normal;
border-radius: 20px;
}
</style>
</body>
</html>