forked from Web-dut-2022/project-0-JINXXIAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<meta charset="utf-8">
<html lang="en">
<head>
<title>百度一下,你就知道</title>
</head>
<style>
.divcss1{text-align:center;margin-top: 30px; }
.divcss4{text-align:right;margin-top: 40px; margin-right: 400px;}
.divcss5{text-align: right;margin-top: 50px;margin-right: 400px;}
</style>
<body>
<div class="divcss5"><a href="index1.html">
<button style="border-radius: 10px">图片搜索</button>
</a>
<a href="index2.html">
<button style="border-radius: 10px;">高级搜索</button>
</a>
</div>
<div class="divcss1"><img src="baidu.png" width="300px" />
<form action="https://www.baidu.com/s" method="GET" target="_blank" >
<input type="text" name="wd"
style="height: 35px;width: 600px;padding-left:10px;border-radius: 10px;outline: none;border-color: RGB(78,110,242)"/>
<input type="submit" value="百度一下"
style="width:150px;height:40px;background-color: #4E6EF2;border: none;color: white;border-radius: 10px"/>
</form></div>
</body>
</html>