PRECISO CRIAR UMA ROTINA DE ENVIOS DE EMAIL COM O PHP
TENHO UMA “PRÉ” TELA DE DIVULGAÇÃO EM HTML, E PRECISO INSERI-LA EM UMA ROTINA PHP DE ENVIOS DE EMAIL
A ROTINA EM PHP NO CASO É ESSA ABAIXO =>
<?php ini_set('display_errors',1);
$nome = $_POST[“nome”];
$ermail = $_POST[“email”];
$telefone = $_POST[“telefone”];
$observacao = $_POST[“obs”];
$data_envio = date(‘d/m/Y’);
$hora_envio = date(‘H:i:s’);
// Compo E-mail
// PRECISO ENVIAR O HTML DE DIVULGAÇÃO DENTRO DESSE CODIGO PELO EMAIL
$texto = " “;
//enviar e-mail
$email_remetente = "henry.leme@sqlconsulter.com.br”;
$headers = “MIME-Version: 1.1\r\n”;
$headers .= “Content-type: text/html; charset=iso-8859-1\r\n”;
$headers .= “From: henry.leme@sqlconsulter.com.br\r\n”; // remetente
$headers .= “Return-Path: henry.leme@sqlconsulter.com.br\r\n”; // return-path
$envio = mail("henry.leme@sqlconsulter.com.br;henrylucas.leme@sqlconsulter.com.br", “Contato pelo Site”, $texto, $headers,"-f$email_remetente");?>
A DIVULGAÇÃO EM HTML/CSS QUE PRECISA SER INSERIDA NESTE CODIGO DE PHP SEGUE ABAIXO =>
@media only screen and (min-width: 620px) { * [lang=x-wrapper] h1 { font-size: 26px !important; line-height: 34px !important; } * [lang=x-wrapper] h2 {
font-size: 20px !important;
line-height: 28px !important;
}
* div [lang=x-size-8] {
font-size: 8px !important;
line-height: 14px !important;
}
* div [lang=x-size-9] {
font-size: 9px !important;
line-height: 16px !important;
}
* div [lang=x-size-10] {
font-size: 10px !important;
line-height: 18px !important;
}
* div [lang=x-size-11] {
font-size: 11px !important;
line-height: 19px !important;
}
* div [lang=x-size-12] {
font-size: 12px !important;
line-height: 19px !important;
}
* div [lang=x-size-13] {
font-size: 13px !important;
line-height: 21px !important;
}
* div [lang=x-size-14] {
font-size: 14px !important;
line-height: 21px !important;
}
* div [lang=x-size-15] {
font-size: 15px !important;
line-height: 23px !important;
}
* div [lang=x-size-16] {
font-size: 16px !important;
line-height: 24px !important;
}
* div [lang=x-size-17] {
font-size: 17px !important;
line-height: 26px !important;
}
* div [lang=x-size-18] {
font-size: 18px !important;
line-height: 26px !important;
}
* div [lang=x-size-18] {
font-size: 18px !important;
line-height: 26px !important;
}
* div [lang=x-size-20] {
font-size: 20px !important;
line-height: 28px !important;
}
* div [lang=x-size-22] {
font-size: 22px !important;
line-height: 31px !important;
}
* div [lang=x-size-24] {
font-size: 24px !important;
line-height: 32px !important;
}
* div [lang=x-size-26] {
font-size: 26px !important;
line-height: 34px !important;
}
* div [lang=x-size-28] {
font-size: 28px !important;
line-height: 36px !important;
}
* div [lang=x-size-30] {
font-size: 30px !important;
line-height: 38px !important;
}
* div [lang=x-size-32] {
font-size: 32px !important;
line-height: 40px !important;
}
* div [lang=x-size-34] {
font-size: 34px !important;
line-height: 43px !important;
}
* div [lang=x-size-36] {
font-size: 36px !important;
line-height: 43px !important;
}
* div [lang=x-size-40] {
font-size: 40px !important;
line-height: 47px !important;
}
* div [lang=x-size-44] {
font-size: 44px !important;
line-height: 50px !important;
}
* div [lang=x-size-48] {
font-size: 48px !important;
line-height: 54px !important;
}
* div [lang=x-size-56] {
font-size: 56px !important;
line-height: 60px !important;
}
* div [lang=x-size-64] {
font-size: 64px !important;
line-height: 63px !important;
}
}
body {
margin: 0;
padding: 0;
}
table {
border-collapse: collapse;
table-layout: fixed;
}
* {
line-height: inherit;
}
[x-apple-data-detectors],
[href^="tel"],
[href^="sms"] {
color: inherit !important;
text-decoration: none !important;
}
.wrapper .footer__share-button a:hover,
.wrapper .footer__share-button a:focus {
color: #ffffff !important;
}
.btn a:hover,
.btn a:focus,
.footer__share-button a:hover,
.footer__share-button a:focus,
.email-footer__links a:hover,
.email-footer__links a:focus {
opacity: 0.8;
}
.ie .btn {
width: 100%;
}
.ie .column,
[owa] .column,
.ie .gutter,
[owa] .gutter {
display: table-cell;
float: none !important;
vertical-align: top;
}
.ie .preheader,
[owa] .preheader,
.ie .email-footer,
[owa] .email-footer {
width: 560px !important;
}
.ie .snippet,
[owa] .snippet,
.ie .webversion,
[owa] .webversion {
width: 280px !important;
}
.ie .header,
[owa] .header,
.ie .layout,
[owa] .layout,
.ie .one-col .column,
[owa] .one-col .column {
width: 800px !important;
}
.ie .fixed-width.has-border,
[owa] .fixed-width.has-border,
.ie .has-gutter.has-border,
[owa] .has-gutter.has-border {
width: 602px !important;
}
.ie .two-col .column,
[owa] .two-col .column {
width: 300px !important;
}
.ie .three-col .column,
[owa] .three-col .column,
.ie .narrow,
[owa] .narrow {
width: 200px !important;
}
.ie .wide,
[owa] .wide {
width: 400px !important;
}
.ie .two-col.has-gutter .column,
[owa] .two-col.x_has-gutter .column {
width: 290px !important;
}
.ie .three-col.has-gutter .column,
[owa] .three-col.x_has-gutter .column,
.ie .has-gutter .narrow,
[owa] .has-gutter .narrow {
width: 188px !important;
}
.ie .has-gutter .wide,
[owa] .has-gutter .wide {
width: 394px !important;
}
.ie .two-col.has-gutter.has-border .column,
[owa] .two-col.x_has-gutter.x_has-border .column {
width: 292px !important;
}
.ie .three-col.has-gutter.has-border .column,
[owa] .three-col.x_has-gutter.x_has-border .column,
.ie .has-gutter.has-border .narrow,
[owa] .has-gutter.x_has-border .narrow {
width: 190px !important;
}
.ie .has-gutter.has-border .wide,
[owa] .has-gutter.x_has-border .wide {
width: 396px !important;
}
.ie .fixed-width .layout__inner {
border-left: 0 none white !important;
border-right: 0 none white !important;
}
.ie .layout__edges {
display: none;
}
.mso .layout__edges {
font-size: 0;
}
.layout-fixed-width,
.mso .layout-full-width {
background-color: #ffffff;
}
@media only screen and (min-width: 620px) {
.column,
.gutter {
display: table-cell;
Float: none !important;
vertical-align: top;
}
.preheader,
.email-footer {
width: 560px !important;
}
.snippet,
.webversion {
width: 280px !important;
}
.header,
.layout,
.one-col .column {
width: 800px !important;
}
.fixed-width.has-border,
.fixed-width.ecxhas-border,
.has-gutter.has-border,
.has-gutter.ecxhas-border {
width: 602px !important;
}
.two-col .column {
width: 300px !important;
}
.three-col .column,
.column.narrow {
width: 200px !important;
}
.column.wide {
width: 800px !important;
}
.two-col.has-gutter .column,
.two-col.ecxhas-gutter .column {
width: 290px !important;
}
.three-col.has-gutter .column,
.three-col.ecxhas-gutter .column,
.has-gutter .narrow {
width: 188px !important;
}
.has-gutter .wide {
width: 394px !important;
}
.two-col.has-gutter.has-border .column,
.two-col.ecxhas-gutter.ecxhas-border .column {
width: 292px !important;
}
.three-col.has-gutter.has-border .column,
.three-col.ecxhas-gutter.ecxhas-border .column,
.has-gutter.has-border .narrow,
.has-gutter.ecxhas-border .narrow {
width: 190px !important;
}
.has-gutter.has-border .wide,
.has-gutter.ecxhas-border .wide {
width: 396px !important;
}
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
.fblike {
background-image: url(https://i3.createsend1.com/static/eb/master/13-the-blueprint-3/images/fblike@2x.png) !important;
}
.tweet {
background-image: url(https://i4.createsend1.com/static/eb/master/13-the-blueprint-3/images/tweet@2x.png) !important;
}
.linkedinshare {
background-image: url(https://i5.createsend1.com/static/eb/master/13-the-blueprint-3/images/lishare@2x.png) !important;
}
.forwardtoafriend {
background-image: url(https://i6.createsend1.com/static/eb/master/13-the-blueprint-3/images/forward@2x.png) !important;
}
}
@media (max-width: 321px) {
.fixed-width.has-border .layout__inner {
border-width: 1px 0 !important;
}
.layout,
.column {
min-width: 320px !important;
width: 320px !important;
}
.border {
display: none;
}
}
.mso div {
border: 0 none white !important;
}
.mso .w560 .divider {
Margin-left: 260px !important;
Margin-right: 260px !important;
}
.mso .w360 .divider {
Margin-left: 160px !important;
Margin-right: 160px !important;
}
.mso .w260 .divider {
Margin-left: 110px !important;
Margin-right: 110px !important;
}
.mso .w160 .divider {
Margin-left: 60px !important;
Margin-right: 60px !important;
}
.mso .w354 .divider {
Margin-left: 157px !important;
Margin-right: 157px !important;
}
.mso .w250 .divider {
Margin-left: 105px !important;
Margin-right: 105px !important;
}
.mso .w148 .divider {
Margin-left: 54px !important;
Margin-right: 54px !important;
}
.mso .font-avenir,
.mso .font-cabin,
.mso .font-open-sans,
.mso .font-ubuntu {
font-family: sans-serif !important;
}
.mso .font-bitter,
.mso .font-merriweather,
.mso .font-pt-serif {
font-family: Georgia, serif !important;
}
.mso .font-lato,
.mso .font-roboto {
font-family: Tahoma, sans-serif !important;
}
.mso .font-pt-sans {
font-family: "Trebuchet MS", sans-serif !important;
}
.mso .footer__share-button p {
margin: 0;
}
@media only screen and (min-width: 620px) {
.wrapper .size-8 {
font-size: 8px !important;
line-height: 14px !important;
}
.wrapper .size-9 {
font-size: 9px !important;
line-height: 16px !important;
}
.wrapper .size-10 {
font-size: 10px !important;
line-height: 18px !important;
}
.wrapper .size-11 {
font-size: 11px !important;
line-height: 19px !important;
}
.wrapper .size-12 {
font-size: 12px !important;
line-height: 19px !important;
}
.wrapper .size-13 {
font-size: 13px !important;
line-height: 21px !important;
}
.wrapper .size-14 {
font-size: 14px !important;
line-height: 21px !important;
}
.wrapper .size-15 {
font-size: 15px !important;
line-height: 23px !important;
}
.wrapper .size-16 {
font-size: 16px !important;
line-height: 24px !important;
}
.wrapper .size-17 {
font-size: 17px !important;
line-height: 26px !important;
}
.wrapper .size-18 {
font-size: 18px !important;
line-height: 26px !important;
}
.wrapper .size-20 {
font-size: 20px !important;
line-height: 28px !important;
}
.wrapper .size-22 {
font-size: 22px !important;
line-height: 31px !important;
}
.wrapper .size-24 {
font-size: 24px !important;
line-height: 32px !important;
}
.wrapper .size-26 {
font-size: 26px !important;
line-height: 34px !important;
}
.wrapper .size-28 {
font-size: 28px !important;
line-height: 36px !important;
}
.wrapper .size-30 {
font-size: 30px !important;
line-height: 38px !important;
}
.wrapper .size-32 {
font-size: 32px !important;
line-height: 40px !important;
}
.wrapper .size-34 {
font-size: 34px !important;
line-height: 43px !important;
}
.wrapper .size-36 {
font-size: 36px !important;
line-height: 43px !important;
}
.wrapper .size-40 {
font-size: 40px !important;
line-height: 47px !important;
}
.wrapper .size-44 {
font-size: 44px !important;
line-height: 50px !important;
}
.wrapper .size-48 {
font-size: 48px !important;
line-height: 54px !important;
}
.wrapper .size-56 {
font-size: 56px !important;
line-height: 60px !important;
}
.wrapper .size-64 {
font-size: 64px !important;
line-height: 63px !important;
}
}
.mso .size-8,
.ie .size-8 {
font-size: 8px !important;
line-height: 14px !important;
}
.mso .size-9,
.ie .size-9 {
font-size: 9px !important;
line-height: 16px !important;
}
.mso .size-10,
.ie .size-10 {
font-size: 10px !important;
line-height: 18px !important;
}
.mso .size-11,
.ie .size-11 {
font-size: 11px !important;
line-height: 19px !important;
}
.mso .size-12,
.ie .size-12 {
font-size: 12px !important;
line-height: 19px !important;
}
.mso .size-13,
.ie .size-13 {
font-size: 13px !important;
line-height: 21px !important;
}
.mso .size-14,
.ie .size-14 {
font-size: 14px !important;
line-height: 21px !important;
}
.mso .size-15,
.ie .size-15 {
font-size: 15px !important;
line-height: 23px !important;
}
.mso .size-16,
.ie .size-16 {
font-size: 16px !important;
line-height: 24px !important;
}
.mso .size-17,
.ie .size-17 {
font-size: 17px !important;
line-height: 26px !important;
}
.mso .size-18,
.ie .size-18 {
font-size: 18px !important;
line-height: 26px !important;
}
.mso .size-20,
.ie .size-20 {
font-size: 20px !important;
line-height: 28px !important;
}
.mso .size-22,
.ie .size-22 {
font-size: 22px !important;
line-height: 31px !important;
}
.mso .size-24,
.ie .size-24 {
font-size: 24px !important;
line-height: 32px !important;
}
.mso .size-26,
.ie .size-26 {
font-size: 26px !important;
line-height: 34px !important;
}
.mso .size-28,
.ie .size-28 {
font-size: 28px !important;
line-height: 36px !important;
}
.mso .size-30,
.ie .size-30 {
font-size: 30px !important;
line-height: 38px !important;
}
.mso .size-32,
.ie .size-32 {
font-size: 32px !important;
line-height: 40px !important;
}
.mso .size-34,
.ie .size-34 {
font-size: 34px !important;
line-height: 43px !important;
}
.mso .size-36,
.ie .size-36 {
font-size: 36px !important;
line-height: 43px !important;
}
.mso .size-40,
.ie .size-40 {
font-size: 40px !important;
line-height: 47px !important;
}
.mso .size-44,
.ie .size-44 {
font-size: 44px !important;
line-height: 50px !important;
}
.mso .size-48,
.ie .size-48 {
font-size: 48px !important;
line-height: 54px !important;
}
.mso .size-56,
.ie .size-56 {
font-size: 56px !important;
line-height: 60px !important;
}
.mso .size-64,
.ie .size-64 {
font-size: 64px !important;
line-height: 63px !important;
}
.footer__share-button p {
margin: 0;
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,700,400);
body {
background-color: #fff;
}
.mso h1 {
}
.mso h2 {
}
.mso h3 {
}
.mso .column, .mso .column__background td {
}
.mso .column, .mso .column__background td {
font-family: sans-serif !important;
}
.mso .btn a {
}
.mso .btn a {
font-family: sans-serif !important;
}
.mso .webversion, .mso .snippet, .mso .layout-email-footer td, .mso .footer__share-button p {
}
.mso .logo {
}
.mso .logo {
font-family: Tahoma,sans-serif !important;
}
.logo a:hover, .logo a:focus {
color: #859bb1 !important;
}
.mso .layout-has-border {
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.mso .layout-has-bottom-border {
border-bottom: 1px solid #ccc;
}
.mso .border, .ie .border {
background-color: #ccc;
}
@media only screen and (min-width: 620px) {
.wrapper h1 {
}
.wrapper h1 {
font-size: 26px !important;
line-height: 34px !important;
}
.wrapper h2 {
}
.wrapper h2 {
font-size: 20px !important;
line-height: 28px !important;
}
.wrapper h3 {
font-size: 16px !important;
line-height: 18px !important;
}
.column, .column__background td {
}
}
.mso h1, .ie h1 {
}
.mso h1, .ie h1 {
font-size: 26px !important;
line-height: 34px !important;
}
.mso h2, .ie h2 {
}
.mso h2, .ie h2 {
font-size: 20px !important;
line-height: 28px !important;
}
.mso h3, .ie h3 {
}
.mso .column, .ie .column, .mso .column__background td, .ie .column__background td {
}
<div class="layout two-col fixed-width" style="Margin: 0 auto;max-width: 600px;min-width: 320px; width: 320px;width: calc(28000% - 173000px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;">
<div class="layout__inner" style="border-collapse: collapse;display: table;width: 100%;background-color: #ffffff;">
<!--[if (mso)|(IE)]><table align="center" cellpadding="0" cellspacing="0"><tr class="layout-fixed-width" style="background-color: #ffffff;"><td style="width: 300px" valign="top" class="w260"><![endif]-->
<div class="column" style='text-align: left;color: #575c66;font-size: 14px;line-height: 21px;font-family: "Open Sans",sans-serif;Float: left;max-width: 320px;min-width: 300px; width: 320px;width: calc(12300px - 2000%);'>
<div style="Margin-left: 20px;Margin-right: 20px;Margin-top: 24px;">
<h2 style="Margin-top: 0;Margin-bottom: 0;font-style: normal;font-weight: normal;color: #1e293d;font-size: 17px;line-height: 26px;">Monitoramento<br /> Banco de Dados </h2><p style="Margin-top: 16px;Margin-bottom: 20px;">Monitoramento diário, semanal e mensal do seu banco de dados, evitando e previnindo problemas rotineiros e oferecendo a disponibilidade total do seu banco </p>
</div>
</div>
<!--[if (mso)|(IE)]></td><td style="width: 300px" valign="top" class="w260"><![endif]-->
<div class="column" style='text-align: left;color: #575c66;font-size: 14px;line-height: 21px;font-family: "Open Sans",sans-serif;Float: left;max-width: 320px;min-width: 300px; width: 320px;width: calc(12300px - 2000%);'>
<div style="font-size: 12px;font-style: normal;font-weight: normal;" align="center">
<img class="gnd-corner-image gnd-corner-image-center gnd-corner-image-top gnd-corner-image-bottom" style="border: 0;display: block;height: auto;width: 100%;max-width: 392px;" src="https://www.appdynamics.com/media/uploaded-images/1431682774/.thumbnails/database_monitoring_screen-1220x0.png" alt="" width="300" />
</div>
</div>
<!--[if (mso)|(IE)]></td></tr></table><![endif]-->
</div>
</div>
<div style="line-height:30px;font-size:30px;"> </div>
<div class="layout two-col fixed-width" style="Margin: 0 auto;max-width: 600px;min-width: 320px; width: 320px;width: calc(28000% - 173000px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;">
<div class="layout__inner" style="border-collapse: collapse;display: table;width: 100%;background-color: #ffffff;">
<!--[if (mso)|(IE)]><table align="center" cellpadding="0" cellspacing="0"><tr class="layout-fixed-width" style="background-color: #ffffff;"><td style="width: 300px" valign="top" class="w260"><![endif]-->
<!--[if (mso)|(IE)]></td><td style="width: 300px" valign="top" class="w260"><![endif]-->
<div class="column" style='text-align: left;color: #575c66;font-size: 14px;line-height: 21px;font-family: "Open Sans",sans-serif;Float: left;max-width: 320px;min-width: 300px; width: 320px;width: calc(12300px - 2000%);'>
<div style="Margin-left: 20px;Margin-right: 20px;Margin-bottom: 24px;">
<h2 style="Margin-top: 0;Margin-bottom: 0;font-style: normal;font-weight: normal;color: #1e293d;font-size: 17px;line-height: 26px;">Banco de Dados</h2><p style="Margin-top: 16px;Margin-bottom: 0;">Possuímos uma equipe especializada e certificada em atendimento operacional em banco de dados SQL SERVER. Tem uma necessidade em banco de dados, entre em contato. </p>
</div>
</div>
<div class="column imgdireita" style='text-align: left;color: #575c66;font-size: 14px;line-height: 21px;font-family: "Open Sans",sans-serif;Float: left;max-width: 320px;min-width: 300px; width: 320px;width: calc(12300px - 2000%);' id="imgdireita">
<div style="font-size: 12px;font-style: normal;font-weight: normal;" align="center">
<img class="gnd-corner-image gnd-corner-image-center gnd-corner-image-bottom" style="border: 0;display: block;height: auto;width: 100%;max-width: 480px;" src="https://i1.createsend1.com/ei/d/D3/A33/CFD/082916/csfinal/site13.jpg" alt="" width="300" />
</div>
</div>
<!--[if (mso)|(IE)]></td></tr></table><![endif]-->
</div>
</div>
<div style="line-height:30px;font-size:30px;"> </div>
<div class="layout two-col fixed-width" style="Margin: 0 auto;max-width: 600px;min-width: 320px; width: 320px;width: calc(28000% - 173000px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;">
<div class="layout__inner" style="border-collapse: collapse;display: table;width: 100%;background-color: #ffffff;">
<!--[if (mso)|(IE)]><table align="center" cellpadding="0" cellspacing="0"><tr class="layout-fixed-width" style="background-color: #ffffff;"><td style="width: 300px" valign="top" class="w260"><![endif]-->
<div class="column" style='text-align: left;color: #575c66;font-size: 14px;line-height: 21px;font-family: "Open Sans",sans-serif;Float: left;max-width: 320px;min-width: 300px; width: 320px;width: calc(12300px - 2000%);'>
<div style="Margin-left: 20px;Margin-right: 20px;Margin-top: 24px;">
<h2 style="Margin-top: 0;Margin-bottom: 0;font-style: normal;font-weight: normal;color: #1e293d;font-size: 17px;line-height: 26px;">Desenvolvimento <br /> Web e Mobile </h2><p style="Margin-top: 16px;Margin-bottom: 20px;">Precisando desenvolver um nova solução em Web ou Mobile? Entre em contato conosco, passe a sua necessidade e poderemos oferecer a melhor solução de desenvolvimento sobre medida para aplicativos em Android e IOS e Sistemas Web </p>
</div>
<div style="Margin-left: 20px;Margin-right: 20px;Margin-bottom: 24px;">
<p style="Margin-top: 0;Margin-bottom: 0;">
</p>
</div>
</div>
<!--[if (mso)|(IE)]></td><td style="width: 300px" valign="top" class="w260"><![endif]-->
<div class="column" style='text-align: left;color: #575c66;font-size: 14px;line-height: 21px;font-family: "Open Sans",sans-serif;Float: left;max-width: 320px;min-width: 300px; width: 320px;width: calc(12300px - 2000%);'>
<div style="font-size: 12px;font-style: normal;font-weight: normal;" align="center">
<img class="gnd-corner-image gnd-corner-image-center gnd-corner-image-top gnd-corner-image-bottom" style="border: 0;display: block;height: auto;width: 100%;max-width: 392px;" src="https://i2.createsend1.com/ei/d/D3/A33/CFD/082916/csfinal/mobile2b1.png" alt="" width="300" />
</div>
</div>
<!--[if (mso)|(IE)]></td></tr></table><![endif]-->
</div>
</div>
<div class="layout email-footer" style="Margin: 0 auto;max-width: 800px;min-width: 320px; width: 320px;width: calc(28000% - 173000px);overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;">
<div class="column wide" style="text-align: center;font-size: 12px;line-height: 19px;color: #99b0b8;font-family: sans-serif;Float: left;max-width: 800px;min-width: 320px; width: 320px;width: calc(8000% - 47600px);">
<div style="Margin-left: 20px;Margin-right: 20px;Margin-top: 10px;Margin-bottom: 10px;">
<div >© 2016 SQL CONSULTER. ALL RIGHTS RESERVED</div>
</div>
</div>
</div>
<div style="line-height:40px;font-size:40px;"> </div>