x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<style>
7
input[type="text"] {
8
width: 150px;
9
display: block;
10
margin-bottom: 10px;
11
background-color: yellow;
12
}
13
14
input[type="button"] {
15
width: 120px;
16
margin-left: 35px;
17
display: block;
18
}
19
</style>
20
</head>
21
<body>
22
23
<form name="input" action="/plays/html-form-submit" method="get">
24
Firstname:<input type="text" name="fname" value="Peter" size="20"> Lastname:
25
<input type="text" name="lname" value="Griffin" size="20">
26
<input type="button" value="Example Button">
27
28
</form>
29
</body>
30
</html>