-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscribe.html
49 lines (49 loc) · 1.14 KB
/
subscribe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>%COMPANYNAME% Newsletter Subscription</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
padding: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
text-align: center;
}
p {
color: #666;
text-align: center;
margin-top: 20px;
}
.unsubscribe {
text-align: center;
margin-top: 30px;
}
.unsubscribe a {
color: #f44336;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to %COMPANYNAME% Newsletter!</h1>
<p>You have successfully subscribed to receive updates and news about %COMPANYNAME%.</p>
<div class="unsubscribe">
<p>If you wish to unsubscribe from this newsletter, click <a href="%EMAILHERE%">here</a>.</p>
</div>
</div>
</body>
</html>