-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTha1.html
151 lines (134 loc) · 3.09 KB
/
Tha1.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
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<title>Lob.com Sample 8.5x11 Letter</title>
<style>
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
width: 8.5in;
height: 11in;
margin: 0;
padding: 0;
}
.page {
page-break-after: always;
position: relative;
width: 8.5in;
height: 11in;
}
.page-content {
position: absolute;
width: 8.125in;
height: 10.625in;
left: 0.1875in;
top: 0.1875in;
background-color: rgba(0,0,0,0.2);
}
.text {
position: relative;
left: 20px;
top: 20px;
width: 6in;
font-family: 'Open Sans';
font-size: 30px;
}
#return-address-window {
position: absolute;
left: .625in;
top: .5in;
width: 3.25in;
height: .875in;
background-color: rgba(255,0,0,0.5);
}
#return-address-text {
position: absolute;
left: .07in;
top: .34in;
width: 2.05in;
height: .44in;
font-size: .11in;
}
#return-logo {
position: absolute;
left: .07in;
top: .02in;
width: 2.05in;
height: .3in;
}
#recipient-address-window {
position: absolute;
left: .625in;
top: 1.7in;
width: 4in;
height: 1in;
background-color: rgba(255,0,0,0.5);
}
#recipient-address-text {
position: absolute;
left: .07in;
top: .05in;
width: 2.92in;
height: .9in;
}
#white-box {
background-color: white;
width: 3.15in;
height: 2in;
position: absolute;
left: .6in;
top: .84in;
}
</style>
</head>
<body>
<div class="page">
<div class="page-content">
<div class="text" style="top: 3in">
Dear Mr. Flintstone
With reference to our telephone conversation today, I am writing
to confirm your order for: 120 x Cheddar Deluxe Ref. No. 856.
The order will be shipped within three days via UPS and should
arrive at your store in about 10 days.
Please contact us again if we can help in any way.
Yours sincerely,
Kenneth Beare
Director of Ken's Cheese House
</div>
</div>
<!-- This div represents a white box which will be printed on top of all artwork to hold address and barcode information. Any content provided underneath this area will be covered. -->
<div id="white-box"></div>
<div id="return-address-window">
<div id="return-logo">
Sample Business Letter
</div>
<div id="return-address-text">
Ken's Cheese House
34 Chatley Avenue
Seattle, WA 98765
October 23, 2017
</div>
</div>
<div id="recipient-address-window">
<div id="recipient-address-text">
Fred Flintstone
Sales Manager
Cheese Specialists Inc.
456 Rubble Road
Rockville, IL 78777
</div>
</div>
</div>
<div class="page">
<div class="page-content">
<div class="text">
This is a second page.
</div>
</div>
</div>
</body>
</html>