-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddm.html
65 lines (57 loc) · 1.29 KB
/
addm.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
<!DOCTYPE html>
<html>
<?php
include 'addm.php';
?>
<head>
<meta charset="utf-8">
<style type="text/css">
*{
margin: 0;
padding: 0;
}
body{
background:url('./image/bg.png');
background-repeat: repeat;
}
#ok{
position: absolute;
margin-top: 50px;
right: 35%;
font-size: 15px;
}
textarea{
position: absolute;
margin-top: 80px;
left: 20%;
/* right: 30%;*/
}
#nn{
position: absolute;
margin-top: 20px;
left: 20%;
color: white;
width: 40%;
text-align: left;
}
#nn input{
width: 60%;
}
#tit{
position: absolute;
left: 20%;
margin-top: 50px;
color: white;
}
</style>
</head>
<body>
<center>
<form method="post">
<label id="nn">备注:<input type="text" name="notes"></label>
<label id="tit">正文:</label>
<input type="submit" value="保存" id="ok">
<textarea name="cont" rows=50 cols= 40%></textarea>
</form>
</body>
</html>