Advertisement
Guest User

Untitled

a guest
Sep 13th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.28 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.         <meta name="viewport" content="width=device-width"/>
  6.         <!-- For development, pass document through inliner -->
  7.         <link rel="stylesheet" href="css/simple.css">
  8.         <style type="text/css">
  9.             * {
  10.             margin: 0;
  11.             padding: 0;
  12.             font-size: 100%;
  13.             font-family: "Avenir Next", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  14.             line-height: 1.65; }
  15.             img {
  16.             max-width: 100%;
  17.             margin: 0 auto;
  18.             display: block; }
  19.             body,
  20.             .body-wrap {
  21.             width: 100% !important;
  22.             height: 100%;
  23.             background: #efefef;
  24.             -webkit-font-smoothing: antialiased;
  25.             -webkit-text-size-adjust: none; }
  26.             a {
  27.             color: #71bc37;
  28.             text-decoration: none; }
  29.             .text-center {
  30.             text-align: center; }
  31.             .text-right {
  32.             text-align: right; }
  33.             .text-left {
  34.             text-align: left; }
  35.             .button {
  36.             display: inline-block;
  37.             color: white;
  38.             background: #71bc37;
  39.             border: solid #71bc37;
  40.             border-width: 10px 20px 8px;
  41.             font-weight: bold;
  42.             border-radius: 4px; }
  43.             h1, h2, h3, h4, h5, h6 {
  44.             margin-bottom: 20px;
  45.             line-height: 1.25; }
  46.             h1 {
  47.             font-size: 32px; }
  48.             h2 {
  49.             font-size: 28px; }
  50.             h3 {
  51.             font-size: 24px; }
  52.             h4 {
  53.             font-size: 20px; }
  54.             h5 {
  55.             font-size: 16px; }
  56.             p, ul, ol {
  57.             font-size: 16px;
  58.             font-weight: normal;
  59.             margin-bottom: 20px; }
  60.             .container {
  61.             display: block !important;
  62.             clear: both !important;
  63.             margin: 0 auto !important;
  64.             max-width: 580px !important; }
  65.             .container table {
  66.             width: 100% !important;
  67.             border-collapse: collapse; }
  68.             .container .masthead {
  69.             padding: 80px 0;
  70.             background: #71bc37;
  71.             color: white; }
  72.             .container .masthead h1 {
  73.             margin: 0 auto !important;
  74.             max-width: 90%;
  75.             text-transform: uppercase; }
  76.             .container .content {
  77.             background: white;
  78.             padding: 30px 35px; }
  79.             .container .content.footer {
  80.             background: none; }
  81.             .container .content.footer p {
  82.             margin-bottom: 0;
  83.             color: #888;
  84.             text-align: center;
  85.             font-size: 14px; }
  86.             .container .content.footer a {
  87.             color: #888;
  88.             text-decoration: none;
  89.             font-weight: bold; }
  90.             img.logo {
  91.             height: 50px;
  92.             width: auto;
  93.             }
  94.         </style>
  95.     </head>
  96.     <body>
  97.         <table class="body-wrap">
  98.             <tr>
  99.                 <td class="container">
  100.                     <!-- Message start -->
  101.                     <table>
  102.                         <tr>
  103.                             <td align="center" class="masthead">
  104.                                 <h1><img src="' . SITE_URL . 'theme/assets/images/logo.png" class="logo"/></h1>
  105.                             </td>
  106.                         </tr>
  107.                         <tr>
  108.                             <td class="content">
  109.                                 |content|
  110.                                 <br/><br/>
  111.                                 Met vriendelijke groet,<br/>
  112.                                 Go4Online.nl<br/>
  113.                             </td>
  114.                         </tr>
  115.                     </table>
  116.                 </td>
  117.             </tr>
  118.             <tr>
  119.                 <td class="container">
  120.                     <!-- Message start -->
  121.                     <table>
  122.                         <tr>
  123.                             <td class="content footer" align="center">
  124.                                 <p>Dit is een autmatisch vervaardigd bericht</p>
  125.                                 <p><a href="https://www.go4online.nl/">Homepage</a> | <a href="https://www.go4online.nl/contact/">Heb je vragen?</a></p>
  126.                             </td>
  127.                         </tr>
  128.                     </table>
  129.                 </td>
  130.             </tr>
  131.         </table>
  132.     </body>
  133. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement