-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (34 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Generic Email Template</title>
<style>
body{font-family:arial,sans-serif;font-size:16px;color:#555;padding:5%;background:#f6f6f6}
p{line-height:145%;margin:30px 0 0}
a{color:#007acc}
a:hover, a:focus{text-decoration:none}
h1{margin-top:0}
img{max-width:100% !important;height:auto}
article{max-width:600px;padding:5%;margin:0 auto;background:#fff}
header{}
footer{font-size:14px;color:#767676;text-align:center}
table, center{display:none !important}
@media(prefers-color-scheme:light){body, article{color:#000;background:#fff}body{background:#f6f6f6}}
@media(prefers-color-scheme:dark){body, article{color:#fff;background:#000}body{background:#111}}
</style>
</head>
<body>
<article>
<header>
<h1>Header Text Here</h1>
</header>
<p>Something something something.</p>
<p>Blah blah blah.</p>
<p><img src="https://generic.tools/email/img.jpg" alt="Image"></p>
</article>
<footer>
<p><a href="mailto:[email protected]">[email protected]</a> · <a href="*|UNSUB|*">Unsubscribe</a></p>
</footer>
</body>
</html>