Created
March 2, 2018 21:20
-
-
Save coderholic/63f1cef375d11b491441de40d4f7e19c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width" /> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>welcome to ipinfo</title> | |
<style> | |
/* ----- Global Stuff ----- */ | |
* { | |
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; | |
font-size: 100%; | |
line-height: 1.6; | |
} | |
img { | |
max-width: 100%; | |
} | |
body { | |
-webkit-font-smoothing: antialiased; | |
-webkit-text-size-adjust: none; | |
width: 100%!important; | |
height: 100%; | |
} | |
a { | |
color: #007eba; | |
} | |
.btn-primary { | |
text-decoration: none; | |
color: #FFF; | |
background-color: #007eba; | |
border: solid #007eba; | |
border-width: 10px 20px; | |
line-height: 2; | |
font-weight: bold; | |
margin-right: 10px; | |
text-align: center; | |
cursor: pointer; | |
display: inline-block; | |
border-radius: 25px; | |
} | |
.btn-secondary { | |
text-decoration: none; | |
color: #FFF; | |
background-color: #aaa; | |
border: solid #aaa; | |
border-width: 10px 20px; | |
line-height: 2; | |
font-weight: bold; | |
margin-right: 10px; | |
text-align: center; | |
cursor: pointer; | |
display: inline-block; | |
border-radius: 25px; | |
} | |
.last { | |
margin-bottom: 0; | |
} | |
.first { | |
margin-top: 0; | |
} | |
.padding { | |
padding: 10px 0; | |
} | |
/* ----- Body ----- */ | |
table.body-wrap { | |
width: 100%; | |
padding: 20px; | |
} | |
table.body-wrap .container { | |
border: 1px solid #f5f5f6; | |
} | |
/* ----- Footer ----- */ | |
table.footer-wrap { | |
width: 100%; | |
clear: both!important; | |
} | |
.footer-wrap .container p { | |
font-size: 12px; | |
color: #1e283a; | |
} | |
table.footer-wrap a { | |
color: #999; | |
} | |
/* ----- Typography ----- */ | |
h1, h2, h3 { | |
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
color: #4a4a4a; | |
margin: 20px 0 10px; | |
line-height: 1.2; | |
font-weight: 400; | |
} | |
h1 { | |
font-size: 36px; | |
} | |
h2 { | |
font-size: 20px; | |
} | |
h3 { | |
font-size: 16px; | |
} | |
p, ul, ol { | |
margin-bottom: 10px; | |
font-weight: normal; | |
font-size: 16px; | |
color: #4a4a4a; | |
} | |
ul li, ol li { | |
margin-left: 5px; | |
list-style-position: inside; | |
} | |
/* ----- Responsive Stuff ----- */ | |
.container { | |
display: block!important; | |
max-width: 600px!important; | |
margin: 0 auto!important; /* centers it */ | |
clear: both!important; | |
} | |
.body-wrap .container { | |
padding: 20px; | |
} | |
.content { | |
max-width: 600px; | |
margin: 0 auto; | |
display: block; | |
} | |
.content table { | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body bgcolor="#f7f9fc"> | |
<!-- body --> | |
<table class="body-wrap" bgcolor="#f7f9fc"> | |
<tr> | |
<td></td> | |
<td class="container" bgcolor="#FFFFFF"> | |
<!-- content --> | |
<div class="content"> | |
<table> | |
<tr> | |
<td style="padding:0 0 15px 0;text-align:left;border-bottom:1px solid #f5f5f6;"> | |
<a href="https://ipinfo.io/"> | |
<img src="https://ipinfo.io/static/images/navbarLogo.png" alt="IPInfo" width="150" height="45"> | |
</a> | |
</td> | |
</tr> | |
<tr> | |
<td> | |
{% block content %}{% endblock %} | |
<p>- ipinfo.io</p> | |
<p><a href="https://twitter.com/ipinfoio">Follow us on Twitter</a></p> | |
</td> | |
</tr> | |
</table> | |
</div> | |
<!-- /content --> | |
</td> | |
<td></td> | |
</tr> | |
</table> | |
<!-- /body --> | |
<!-- footer --> | |
<!-- <table class="footer-wrap"> | |
<tr> | |
<td></td> | |
<td class="container"> --> | |
<!-- content --> | |
<!-- <div class="content"> | |
<table> | |
<tr> | |
<td align="center"> | |
<p><a href="#"><unsubscribe>Unsubscribe</unsubscribe></a></p> | |
</td> | |
</tr> | |
</table> | |
</div> --> | |
<!-- /content --> | |
<!-- </td> | |
<td></td> | |
</tr> | |
</table> --> | |
<!-- /footer --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment