-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (84 loc) · 4 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Allura&family=Herr+Von+Muellerhoff&family=Mr+De+Haviland&family=Open+Sans&family=Ruthie&display=swap" rel="stylesheet">
</head>
<body style="background-color: #ebf7fa; margin: auto; font-size: 0.8rem; max-width: 600px; font-family: 'Open Sans', sans-serif;">
<div style="text-align: center;">
<h1 class="heading" style="font-family: 'Mr De Haviland', cursive;
font-size: 3rem;
transform: rotate(-10deg);
font-weight: 100;
margin: 40px auto;"> Thank you! </h1>
<p> Hi Xavier, we've got your order and will contact you as soon as it's ready! </p>
<h3 class="order" style="margin-bottom: 0px;"> Order #12345 </h3>
<p class="date" style="font-size: small; margin-top: 0px;"> 16 NOV 2020</p>
</div>
<!-- items-section -->
<section id="items" style="background-color: #fff; padding: 20px 20px 10px 20px; margin-bottom: 20px;">
<h5 style="text-align: left;">5 ITEMS</h5>
<hr>
<table style="margin:auto;">
<tbody>
<tr>
<td style="text-align: center;"><img class="item-img" src="https://res.cloudinary.com/warner-print/image/upload/v1600249931/Image_9_2x_bab4b9c698.png" style="width: 50%; margin: 20px 0px;" alt></td>
<td class="desc" style="width: 60%; text-align: left; line-height: 1;">
<div>
<h3>Lorem & Ipsum</h3>
<p>PRICE: £0.00</p>
<p>QTY: £0.00</p>
<p>DELIVERY DATE: £0.00</p>
</div>
</td>
</tr>
<tr>
<td style="text-align: center;"><img class="item-img" src="https://res.cloudinary.com/warner-print/image/upload/v1600249931/Image_9_2x_bab4b9c698.png" style="width: 50%; margin: 20px 0px;" alt></td>
<td class="desc" style="text-align: left; line-height: 1;">
<h3>Lorem & Ipsum</h3>
<p>PRICE: £0.00</p>
<p>QTY: £0.00</p>
<p>DELIVERY DATE: £0.00</p>
</td>
</tr>
<tr>
<td style="text-align: center;"><img class="item-img" src="https://res.cloudinary.com/warner-print/image/upload/v1600249931/Image_9_2x_bab4b9c698.png" style="width: 50%; margin: 20px 0px;" alt></td>
<td class="desc" style="text-align: left; line-height: 1;">
<h3>Lorem & Ipsum</h3>
<p>PRICE: £0.00</p>
<p>QTY: £0.00</p>
<p>DELIVERY DATE: £0.00</p>
</td>
</tr>
</tbody>
</table>
<hr>
<table style="text-align:center; margin:20px 0px;">
<tbody>
<tr>
<td style="width:90%">SUBTOTAL</td>
<td style="width:10%">$0.00</td>
</tr>
<tr>
<td style="width:90%">DISCOUNT</td>
<td style="width:10%">$0.00</td>
</tr>
<tr>
<td style="width:90%">TOTAL</td>
<td style="width:10%">$0.00</td>
</tr>
</tbody>
</table>
</section>
<section id="del-info" style=" padding: 20px; margin-bottom: 40px; background-color: #c488a2; color:#fff; text-align: center;">
<h3>DELIVERY INFORMATION</h3>
<hr>
<p>Mosope Adebayo</p>
<p>7, John Doe Street Jane city Lagos, Nigeria</p>
<p>Tel: 08012345678</p>
</section>
</body>
</html>