[2016-01-15][html][简单搜索框]
[2016-01-15][html][简单搜索框]

|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<title>搜索框</title>
<meta charset="utf-8">
</head>
<body>
<table>
<tr colspan = 2>
<img src = "https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png"></tr>
<tr>
<td> <input type = "text" name = "wd" size = 60> </td>
<td> <input type = "submit" value = "搜索"> </td>
</form></tr>
</table>
</body>
</html>
|