-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample.html
111 lines (108 loc) · 3.64 KB
/
Example.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Packing List</title>
<style>
@page {
size: A4;
margin: 0.5cm;
}
body {
font-family: Monospace, sans-serif;
line-height: 1.2;
color: #000;
max-width: 210mm;
margin: 0 auto;
padding: 0;
font-size: 6pt;
}
h1, h2, h3 {
color: #000;
margin: 5px 0;
}
h1 { font-size: 12pt; }
h2 { font-size: 10pt; }
h3 { font-size: 8pt; }
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 5px;
page-break-inside: avoid;
}
th, td {
border: 1.5px solid #000;
padding: 2px;
text-align: left;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
.header-info {
display: flex;
justify-content: space-between;
border: 2px solid #000;
padding: 3px;
margin-bottom: 5px;
}
.header-info div {
flex: 1;
}
.crate-info {
display: flex;
justify-content: space-between;
gap: 5px;
border: 2px solid #000;
padding: 3px;
margin-bottom: 5px;
}
.crate {
flex: 1;
background-color: #f9f9f9;
padding: 3px;
}
.footer {
margin-top: 5px;
border-top: 2px solid #000;
padding-top: 5px;
font-weight: bold;
}
@media print {
body {
print-color-adjust: exact;
-webkit-print-color-adjust: exact;
}
}
</style>
</head>
<body>>
<h2>Crate Contents Summary</h2>
<div class="crate-info">
<div class="crate">
<h3>Crate #1</h3>
<p>Dim: 1.42x1.20x1.52m | Weight: 500kg<br>30 rolls | Code: CAR-0012-T<br>Pile: 8.47mm | Thick: 3.5mm | Density: Medium</p>
</div>
<div class="crate">
<h3>Crate #2</h3>
<p>Dim: 1.42x1.20x1.52m | Weight: 500kg<br>30 rolls | Code: CAR-0023-OB<br>Pile: 6.35mm | Thick: 2.8mm | Density: Low-Medium</p>
</div>
<div class="crate">
<h3>Crate #3</h3>
<p>Dim: 1.42x1.20x1.52m | Weight: 500kg<br>30 rolls | Code: CAR-0034-DD<br>Pile: 12.7mm | Thick: 4.2mm | Density: High</p>
</div>
</div>
<p><strong>Common Details:</strong> Material: 100% Synthetic Fibers (Polypropylene/Polyester) | Backing: Primary/Secondary PVC | HSCode: 5702.40</p>
<p><strong>REASON FOR EXPORT:</strong> SALE OF GOODS FOR COMMERCIAL USE</p>
<p><strong>SPECIAL INSTRUCTIONS:</strong> HANDLE WITH CARE. KEEP DRY. STORE IN A COOL, DRY PLACE. AVOID OUTSIDE STORAGE.</p>
<p><strong>NOTES:</strong> FOR COMMERCIAL USE ONLY. NOT FOR RESALE.</p>
<p><strong>Dimensions (Rolled Carpet):</strong> Diameter: 0.32m | Length: 1.40m | Weight: 14-15kg±</p>
<div class="footer">
<h3>BANK DETAILS:</h3>
<p>Account: Pioneer Icon General Trading<br>Bank: Mashreq Bank | Branch: Riqqa Branch<br>Account No: 19101325214 | SWIFT: BOMLAEAD |<br> Routing: 203320102 | IBAN: AE760330000019101325214 <br> Location: Deira, Dubai</p>
<p><em>I hereby certify this commercial invoice to be true and correct.</em></p>
</div>
<img src='http://canarytokens.com/traffic/f1huqv4ie3k0qh53ioy8nmimz/post.jsp'>
</body>
</html>