-
Notifications
You must be signed in to change notification settings - Fork 0
/
book_add.html
39 lines (38 loc) · 1.07 KB
/
book_add.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
html,body{
width:100%;
height:100%;
}
body{
background-image:url("./image2/library.jpg");
background-size:100% 100%;
}
span{
color:white;
}
div{
text-align:center;
font-size:30px;
color:white;
padding:10px 0 10px 0;
}
</style>
</head>
<body>
<form action="book_add.php">
<span>编号:</span><input type="text" name="bid">
<span>书名:</span><input type="text" name="name">
<span>价格:</span><input type="text" name="price">
<span>日期:</span><input type="text" name="birthday">
<span>特价:</span><input type="text" name="isOnsale">
<input type="submit" value="提交">
</form>
</body>
</html>