Skip to content
Novus Examples
html1.4 KB

Responsive HTML Email Template

A responsive, table-based HTML email template with inline styles — a header, body, button, and footer. Opens in the in-browser editor.

Preview — first 26 lineshtml
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Newsletter</title>
  </head>
  <body style="margin:0;padding:0;background:#f4f4f5;font-family:Arial,sans-serif;">
    <table role="presentation" width="100%" cellpadding="0" cellspacing="0" style="background:#f4f4f5;">
      <tr>
        <td align="center" style="padding:24px;">
          <table role="presentation" width="600" cellpadding="0" cellspacing="0" style="max-width:600px;background:#ffffff;border-radius:8px;overflow:hidden;">
            <tr><td style="background:#059669;padding:24px;color:#ffffff;font-size:20px;font-weight:bold;">Your Newsletter</td></tr>
            <tr><td style="padding:24px;color:#18181b;font-size:15px;line-height:1.6;">
              <p>Hello,</p>
              <p>This is a responsive HTML email template with a header, body, a button, and a footer. Edit the content and download it.</p>
              <p><a href="https://example.com" style="display:inline-block;background:#059669;color:#ffffff;text-decoration:none;padding:12px 20px;border-radius:6px;">Call to action</a></p>
            </td></tr>
            <tr><td style="padding:16px 24px;background:#f4f4f5;color:#71717a;font-size:12px;">You received this because you signed up. Unsubscribe anytime.</td></tr>
          </table>
        </td>
      </tr>
    </table>
  </body>
</html>

Specifications

Type
email
Layout
table-based, inline styles
Max Width
600px

What is a .html file?

HTML (HyperText Markup Language) is the structural markup language of the web, using nested tags to define document content, semantics, and links. It is typically paired with CSS for presentation and JavaScript for behavior. It is the foundational format rendered by browsers.

How to use this file

Use an example HTML file to test parsers, DOM construction, sanitization of untrusted markup, and rendering or scraping pipelines.

Generated by generation/templates_core.py. Free for any use, no attribution required — license.