-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path1ページ.html
More file actions
131 lines (126 loc) · 4.73 KB
/
1ページ.html
File metadata and controls
131 lines (126 loc) · 4.73 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<title>chokohon</title>
<meta charset="utf-8">
<style type="text/css">
.page{text-align: center;
margin-top: 50px;
}
.page a,.page span{
text-decoration: none;
border:1px solid #70ad47;
padding: 5px 7px;
color: #767675;
cursor: pointer;
}
.page a:hover,.page span:hover{
color: red;
}
.divcss5{
margin: 0 auto;width: 100%;height: 100%
}
.border{
margin: 0 auto;margin-top: 30px;width: 100%;height: 100%;text-align: center;
}
</style>
</head>
<body>
<div class="divcss5">
<img src="1504663679_547816.png" style="height: 280px;width: 300;float: left;margin-top:10px;margin-left: 100px">
</div>
<div class="divcss5" style="background-color:#156f1d;height:50px;">
<div style="float: right;margin-top:8px;margin-right: 10px;">
<h4 align="right" style="margin-top: 0px;">
<font color="#FFFFFF">お知らせ|ご利用ガイド</font>
</h4>
</div>
</div>
<div class="divcss5" style="background-color:#bcf06a;height:50px;">
<div style="float: right;margin-top:8px;margin-right: -170px;">
<h4 align="right" style="margin-top: 0px;">
<font color="#FFFFFF"><button type="button" style="background: #96c83d">図書新規</button></font>
</h4>
</div>
</div>
<div class="divcss5" style="background-color:#fbf7b5;height:150px;">
<div style="background-color:#79976d;display: inline-block;height:100px;width:300px;float: right;margin-top:15px;margin-right: 50px;">
<h1 align="center" style="margin-top:20px;color: #FFFFFF;font-size: 50px" >図書一覧</h1>
</div>
</div>
<div class="divcss5" style="background-color:#156f1d;height:20px;"></div>
<!--border部分-->
<div class="border">
<table border="1" align="center" cellspacing="0" cellpadding="10" width="800" height="500" style="border-color: #70ad47">
<thead>
<tr>
<th>ISBNコード</th>
<th>ASINコード</th>
<th>書名</th>
<th>コメント</th>
<th>詳細</th>
<th>編集</th>
<th>削除</th>
</tr>
</thead>
<tbody align="center" font-size="12px" >
<tr bgcolor="e2efda">
<td></td>
<td></td>
<td></td>
<td></td>
<td><button type="button" style="background: #96c83d">詳細</button></td>
<td><button type="button" style="background: #96c83d">編集</button></td>
<td><button type="button" style="background: #96c83d">削除</button></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td><button type="button" style="background: #96c83d">詳細</button></td>
<td><button type="button" style="background: #96c83d">編集</button></td>
<td><button type="button" style="background: #96c83d">削除</button></td>
</tr>
<tr bgcolor="e2efda">
<td></td>
<td></td>
<td></td>
<td></td>
<td><button type="button" style="background: #96c83d">詳細</button></td>
<td><button type="button" style="background: #96c83d">編集</button></td>
<td><button type="button" style="background: #96c83d">削除</button></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td><button type="button" style="background: #96c83d">詳細</button></td>
<td><button type="button" style="background: #96c83d">編集</button></td>
<td><button type="button" style="background: #96c83d">削除</button></td>
</tr>
<tr bgcolor="e2efda">
<td></td>
<td></td>
<td></td>
<td></td>
<td><button type="button" style="background: #96c83d">詳細</button></td>
<td><button type="button" style="background: #96c83d">編集</button></td>
<td><button type="button" style="background: #96c83d">削除</button></td>
</tr>
</tbody>
</table>
<div class="page">
<span>前へ</span>
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
<a href="#">5</a>
<a href="#">6</a>
<span>次へ</span>
</div>
</div>
</body>
</html>