-
Notifications
You must be signed in to change notification settings - Fork 0
/
THA 2.html
60 lines (57 loc) · 1.36 KB
/
THA 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample business letter</title>
</head>
<style>
.from{
width: 10%;
}
.under
{
text-decoration: underline;
text-decoration: solid;
}
</style>
<body>
<h1>
Sample Business Letter
</h1>
<div class="from">
<p>Ken's Cheese House <sub> 34 </sub>Chatley Avenue
Seattle, WA <sub> 98765</sub></p>
</div>
<div class="date">
<p>October 23, 2017
</p>
</div>
<div class="to">
<p>Fred Flintstone
<br>
Sales Manager
<br>
Cheese Specialists Inc.
<br>
456 Rubble Road
<br>
Rockville, IL 78777
</p>
</div>
<p>Dear Mr. Flintstone,</p>
<div class="content">
<p> With reference to our <span class="under"></span> telephone conversation today, I am writing to confirm your order for: 120 x Cheddar Deluxe Ref. No. 856.</p>
<p>
The order will be shipped within three days via UPS and should arrive at your store in about 10 days.
</p>
</div>
<div class="end">
<p> Yours sincerely,
<br> Kenneth Beare
<br>
Director of Ken's Cheese House</p>
</div>
</body>
</html>