-
Notifications
You must be signed in to change notification settings - Fork 0
/
newsLetter.html
81 lines (76 loc) · 2.29 KB
/
newsLetter.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
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Your Email Template</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500&family=Poppins&family=Roboto&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: Arial, sans-serif;
background-color: #ebe5be;
padding: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #edebdd;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333333;
}
p {
color: #666666;
}
.button {
display: inline-block;
background-color: #4caf50;
color: #ffffff;
padding: 10px 20px;
text-decoration: none;
border-radius: 3px;
}
.footer {
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<image
src="https://i.imgur.com/9xgC7fn.jpeg"
alt="wallet-wise"
weight="500px"
height="350"
/>
<h1 style="font-family: 'Roboto', sans-serif">Welcome to our Newsletter!</h1>
<p style="font-family: 'Roboto', sans-serif">Dear Subscriber,</p>
<p style="font-family: 'Roboto', sans-serif">
Thank you for subscribing to our newsletter. We will keep you updated
with the latest news and promotions.
</p>
<p style="font-family: 'Roboto', sans-serif">
To stay connected, follow us on social media:
<br />
<a href="https://facebook.com/example">Facebook</a> |
<a href="https://twitter.com/example">Twitter</a> |
<a href="https://instagram.com/example">Instagram</a>
</p>
<p style="font-family: 'Roboto', sans-serif">
If you have any questions or need assistance, please don't hesitate to
contact us.
</p>
<p style="font-family: 'Roboto', sans-serif">
<a class="button" href="https://example.com">Visit Our Website</a>
</p>
<div class="footer">© 2023 Wise Wallet. All rights reserved.</div>
</div>
</body>
</html>