This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
email.html
78 lines (76 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html>
<head>
<style type="text/css" media="screen">
body {
background: #222;
font-family: 'Roboto', sans-serif;
}
header {
text-align: center;
margin-bottom: 2rem;
}
header img {
filter: drop-shadow(0px 0px 10px black);
height: 15rem;
}
main {
background: white;
margin: 0 auto;
border-radius: 2rem 2rem;
color: black;
padding: 3rem;
margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
main {
width: 70%;
}
}
footer {
text-align: center;
}
footer a {
margin: 0 2rem;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
}
a {
color: #0F7DB0;
text-decoration: none;
}
a:visited {
color: #0F7DB0 !important;
}
a.button {
display: block;
width: 30%;
margin: 0 auto;
text-align: center;
text-transform: uppercase;
font-weight: bold;
background: #2BBAFD;
color: white;
padding: 1rem;
border-radius: 2rem;
}
a.button:visited {
color: white !important;
}
</style>
</head>
<body>
<header>
<img src="https://2022.hacktheburgh.com/static/logos/index_nav.png" alt="Hack the Burgh 2022" />
</header>
<main>
<h1>Heading</h1>
<p>Some text</p>
<a href="#">A small link</a>
<a href="#" class="button">a big button</a>
</main>
<footer>
<a href="#">Web version</a>
<a href="#">Stop emailing me</a>
</footer>
</body>
</html>