-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (63 loc) · 1.8 KB
/
Copy pathindex.html
File metadata and controls
74 lines (63 loc) · 1.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Newsletter</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
}
.header {
background-color: #3498db;
color: #ffffff;
padding: 20px;
text-align: center;
}
.content {
padding: 20px;
}
.footer {
background-color: #ecf0f1;
padding: 10px;
text-align: center;
}
/* Add responsive styles */
@media screen and (max-width: 600px) {
.container {
width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="header">
<h1>Your Company Name</h1>
</div>
<!-- Content -->
<div class="content">
<p>Hello [Name],</p>
<p>We hope you're doing well. Here are some updates from Your Company:</p>
<ul>
<li>Exciting news about our latest product!</li>
<li>Upcoming events and promotions.</li>
<li>Customer testimonials and success stories.</li>
</ul>
<p>Stay tuned for more updates!</p>
</div>
<!-- Footer -->
<div class="footer">
<p>For more information, visit our website: <a href="https://www.yourcompany.com">www.yourcompany.com</a></p>
<p>If you no longer wish to receive our emails, <a href="#">unsubscribe here</a>.</p>
</div>
</div>
</body>
</html>