This repository has been archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
163 lines (159 loc) · 4.78 KB
/
index.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>請求書 - 印刷プレビュー</title>
<link rel="stylesheet" href="style.css" type="text/css">
<style>@page { size: A4 }</style>
</head>
<body class="A4">
<section class="sheet">
<div class="invoice">
<div class="header">
<div class="meta">
<p>2017年12月07日</p>
<p>請求書番号: 20171207-001</p>
</div>
<h1>請求書</h1>
<div class="recipients-sender">
<div class="recipients">
<p class="recipient-name">サンプル株式会社</p>
<p class="message">下記の通りご請求申し上げます。</p>
<dl class="total-amount">
<dt>ご請求金額</dt>
<dd>¥ 19,800 -</dd>
</dl>
</div>
<div class="sender">
<div class="sender-logo">
<img src="logo.png">
</div>
<p class="sender-name">株式会社テスト</p>
<p class="sender-address">
〒000-0000<br>
島根県松江市○○町12番地34号<br>
なんたらビル2階
</p>
</div>
</div>
</div>
<div class="details">
<table>
<tbody>
<tr>
<th>品番・品名</th>
<th>数量</th>
<th>単価</th>
<th>金額</th>
</tr>
<tr>
<td class="name">🍣</td>
<td class="quantity">20皿</td>
<td class="unit-price">300円</td>
<td class="amount">6,000円</td>
</tr>
<tr>
<td class="name">ケーキ</td>
<td class="quantity">1個</td>
<td class="unit-price">500円</td>
<td class="amount">500円</td>
</tr>
<tr>
<td rowspan="3" class="blank"></td>
<td colspan="2">小計</td>
<td class="amount">6,500円</td>
</tr>
<tr>
<td colspan="2">消費税</td>
<td class="amount">520円</td>
</tr>
<tr>
<td colspan="2">合計</td>
<td class="amount">7,020円</td>
</tr>
</tbody>
</table>
</div>
<div class="footer">
<p class="note">
ご査収のほど、よろしくお願いいたします。
</p>
</div>
</div>
</section>
<section class="sheet">
<div class="invoice">
<div class="header">
<div class="meta">
<p>2017年12月07日</p>
<p>請求書番号: 20171207-001</p>
</div>
<h1>請求書</h1>
<div class="recipients-sender">
<div class="recipients">
<p class="recipient-name">サンプル株式会社</p>
<p class="message">下記の通りご請求申し上げます。</p>
<dl class="total-amount">
<dt>ご請求金額</dt>
<dd>¥ 19,800 -</dd>
</dl>
</div>
<div class="sender">
<div class="sender-logo">
<img src="logo.png">
</div>
<p class="sender-name">株式会社テスト</p>
<p class="sender-address">
〒000-0000<br>
島根県松江市○○町12番地34号<br>
なんたらビル2階
</p>
</div>
</div>
</div>
<div class="details">
<table>
<tbody>
<tr>
<th>品番・品名</th>
<th>数量</th>
<th>単価</th>
<th>金額</th>
</tr>
<tr>
<td class="name">🍣</td>
<td class="quantity">20皿</td>
<td class="unit-price">300円</td>
<td class="amount">6,000円</td>
</tr>
<tr>
<td class="name">ケーキ</td>
<td class="quantity">1個</td>
<td class="unit-price">500円</td>
<td class="amount">500円</td>
</tr>
<tr>
<td rowspan="3" class="blank"></td>
<td colspan="2">小計</td>
<td class="amount">6,500円</td>
</tr>
<tr>
<td colspan="2">消費税</td>
<td class="amount">520円</td>
</tr>
<tr>
<td colspan="2">合計</td>
<td class="amount">7,020円</td>
</tr>
</tbody>
</table>
</div>
<div class="footer">
<p class="note">
ご査収のほど、よろしくお願いいたします。
</p>
</div>
</div>
</section>
</body>
</html>