-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.html
76 lines (76 loc) · 1.78 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Verify your email</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
}
.container {
padding: 30px;
max-width: 600px;
margin: 0 auto;
text-align: center;
}
.title {
font-size: 24px;
}
.message {
font-size: 16px;
padding: 15px 0;
}
.button {
background-color: #000;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 2px;
cursor: pointer;
text-decoration: none;
text-transform: none;
}
.socials {
display: flex;
justify-content: center;
align-items: center;
padding: 20px 0;
column-gap: 2rem;
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">Verify your email</h1>
<p class="message">
Thank you for registering with our website. Please click the button
below to verify your email address
</p>
<a href="#" class="button">Click here</a>
<p class="message">
If you did not register for our website, please ignore this email.
</p>
<hr />
<div class="socials">
<a
href="https://instagram.com/_sahil_sapariya_03"
class="button"
target="_blank"
style="border-radius: 50px"
>
Instagram
</a>
<a
href="https://twitter.com/sahil_sapariya"
class="button"
target="_blank"
style="border-radius: 50px"
>
Twitter
</a>
</div>
</div>
</body>
</html>