-
Notifications
You must be signed in to change notification settings - Fork 1
/
mail-template.html
36 lines (34 loc) · 1.55 KB
/
mail-template.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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name=viewport content="width=device-width, initial-scale=1">
<body style="border-spacing: 0;
border-collapse: collapse; margin: 0;background-color: rgb(248, 238, 230);">
<table>
<tr style="margin: 0; border:0; background-color: rgb(248, 238, 230);">
<td style="margin: 0; border:0; background-color: rgb(248, 238, 230);">
<div class="main" style="height: 100%;padding: 4%; max-width: 100%; margin: 0;">
<div class="logo" style="margin: 0 auto;display:flex; justify-content: center; ">
<img style="max-width: 75%;" src="https://i.ibb.co/6ZkpxZj/logo-2.png">
</div>
<div class="date"
style="font-family: 'Montserrat', sans-serif;background-color: coral;border: 2px solid black;border-radius: 5px;padding: 5px;">
Date
</div>
<div class="section" style="font-family: 'Montserrat', sans-serif;">
<h2>Title1</h2>
<h4><i>Subtitle1</i></h4>
Body1
</div>
<div class="section" style="font-family: 'Montserrat', sans-serif;">
<h2>Title2</h2>
<h4><i>Subtitle2</i></h4>
Body2
</div>
</div>
</td>
</tr>
</table>
</body>
</html>