Skip to content

Instantly share code, notes, and snippets.

@beytarovski
Created August 11, 2020 07:07
Show Gist options
  • Save beytarovski/53141ffe3cf7aae7b4fc1585b62b5d25 to your computer and use it in GitHub Desktop.
Save beytarovski/53141ffe3cf7aae7b4fc1585b62b5d25 to your computer and use it in GitHub Desktop.
Simple HTML for mails
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<style type="text/css">
body {
color: #212121;
font-size: 16px;
background-color: #fff;
line-height: 25px;
margin: 30px;
padding: 0;
}
a {
color: #1292ee;
text-decoration: none;
}
p {
margin: 0 0 30px 0;
}
</style>
</head>
<body>
<!-- Content -->
<p>Hello, I am content</p>
<p>This is more text...</p>
<!-- Footer -->
<div style="margin-top: 30px; line-height: 21px;">
<p>Best,</p>
<div><img src="https://my.screets.io/static/img/logo-red-300x.png" width="50" height="50" style="border-radius: 3px;"></div>
<div style="margin-top: 5px"><strong>screets</strong></div>
<div style="color:#999999; font-style: italic;">A beautiful chat widget for your website</div><a href="https://screets.io">screets.io</a></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment