Skip to content

Instantly share code, notes, and snippets.

@basith374
Created June 21, 2017 06:49
Show Gist options
  • Save basith374/5b2aaad5d373a7223395dd6624efa4b6 to your computer and use it in GitHub Desktop.
Save basith374/5b2aaad5d373a7223395dd6624efa4b6 to your computer and use it in GitHub Desktop.
intercom like mail
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<title>Basith from Bluroe</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style type="text/css">
body {
-webkit-font-smoothing: antialiased;
font-family: 'Open Sans', sans-serif;
background-color: #efefef;
color: #555;
font-size: 14px;
}
.box {
padding: 30px;
background-color: #fff;
border: 1px solid #ccc;
border-top-color: #e75967;
border-top-width: 3px;
}
.container {
}
.content {
width: 500px;
margin: 3em auto;
}
.foot {
padding: 20px;
align-items: center;
font-size: 13px;
display: flex;
align-items: center;
}
.foot img {
margin-right: 10px;
}
.foot .pro {
display: flex;
align-items: center;
flex-grow: 1;
}
.foot .name {
}
.foot .company {
color: #999;
}
.foot a {
color: #999;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="box">
<p>Hi there,</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software</p>
<p>Best,</p>
<p>Basith</p>
</div>
<div class="foot">
<div class="pro">
<img src="http://res.cloudinary.com/bluroe-labs/image/upload/v1496061160/avatar40_pmrou1.png"/>
<span><b class="name">Basith</b> <span class="company">from Bluroe</span></span>
</div>
<a href="#">Unsubscribe</a>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment