-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.html
57 lines (54 loc) · 1.53 KB
/
email.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
width: 80%;
margin: auto;
background-color: #f5f5f5;
padding: 20px;
border-radius: 5%;
}
.header {
text-align: center;
}
.footer {
text-align: center;
margin-top: 20px;
border-top: 1px solid black;
}
.logo {
width: 200px;
}
.subject {
color: #14183E;
}
.link {
color: #37883e;
}
.message {
margin-top: 20px;
color: #14183E;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<a href="https://atc.qld.edu.au"><img class="logo" src="cid:logo" alt="Logo"></a>
<h1 class="subject">{{subject}}</h1>
</div>
<div class="message">
<p style="text-align:center">{{message}}</p>
</div>
<div class="footer">
<div style="margin-top: 20px;">
© <a class="link" href="https://atc.qld.edu.au">Ambrose Treacy College</a>, 2023. All Right Reserved.
</div>
</div>
</div>
</body>
</html>