-
Notifications
You must be signed in to change notification settings - Fork 0
/
b.html
82 lines (74 loc) · 1.75 KB
/
b.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
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
<html>
<head>
<style>
input[type=text]{
width: 60%;
padding: 5px 8px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 10px;
box-sizing: border-box;
}
input[type= select] {
width: 30px;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=submit] {
width: 40%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
div {
width: 750px;
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
</style>
<meta http-equiv="content-type" content="text/html;charset=GBK" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
</head>
<body>
<div>
<h3> 设置</h3>
<form action="http://192.168.4.1/" method="get" accept-charset="GBK">
<label for="fname">首行</label>
<input type="text" id="input" name="one" length=25 value="中文">
<br/>
<label for="fname">字体</label>
<select id="charset" name="onesize">
<option value=34>大</option>
<option value=17>中</option>
<option value=1>小</option>
</select>
<br/>
<!-- 0x01 最小,竖着 1。0x22最大 34. 0x11算就中等,17; -->
<label for="fname">尾行</label>
<input type="text" id="input" name="two" value="文">
<br/>
<label for="fname">字体</label>
<select id="charset" name="twosize">
<option value=34>大</option>
<option value=17>中</option>
<option value=1>小</option>
</select>
<br/>
<input type="submit" value="确定">
</form>
</div>
</body>
</html>