<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Template</title>
<style type="text/css">
/* Basic Reset */
body, #bodyTable, #bodyCell, #bodyCell {
height: 100% !important;
margin: 0;
padding: 0;
width: 100% !important;
}
table {
border-collapse: collapse;
}
table[class="body"] {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
table[class="container"] {
width: 600px;
}
td, th {
vertical-align: top;
}
/* Content Styling */
.content {
padding: 20px;
}
h1, h2, h3, h4, h5, h6 {
color: #333;
font-family: Arial, sans-serif;
margin-bottom: 10px;
}
p {
font-family: Arial, sans-serif;
line-height: 1.6;
margin-bottom: 15px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
display: block;
}
/* Responsive Design */
@media screen and (max-width: 600px) {
table[class="container"] {
width: 95% !important;
}
}
</style>
</head>
<body>
<table class="body" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<table class="container" align="center" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="content">
<!-- Your email content goes here -->
<h1>Email Subject</h1>
<p>This is the body of your email. You can add text, images, and links here.</p>
<img src="your-image.jpg" alt="Image">
<a href="your-link.com">Click here</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>