Last active
January 30, 2021 12:17
-
-
Save darideveloper/1edfd1fd4f1edb9661c6b9585b4168b6 to your computer and use it in GitHub Desktop.
Plantilla email html, servicio de entregas
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 lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Recordatorio</title> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
width: 100%; | |
font-weight: 300; | |
} | |
main { | |
margin: 0 auto; | |
width: 600px; | |
padding: 50px; | |
} | |
img { | |
width: 100%; | |
height: 100%; | |
} | |
.logo { | |
margin: 0 auto; | |
width: 200px; | |
height: 200px; | |
} | |
h1, h2, p, a, b { | |
font-weight: inherit; | |
} | |
h1 { | |
width: 100%; | |
text-align: center; | |
font-size: 50px; | |
margin: 50px 0; | |
margin-top: 20px; | |
} | |
p, b, a, h2 { | |
width: 100%; | |
text-align: center; | |
display: block; | |
margin: 50px 0; | |
} | |
p { | |
font-size: 20px; | |
} | |
b { | |
font-size: 25px; | |
} | |
.name { | |
margin-bottom: 0; | |
} | |
.main_button { | |
font-size: 40px; | |
width: 300px; | |
background-color: #222831; | |
border-radius: 10px; | |
padding: 5px; | |
text-decoration: none; | |
color: white !important; | |
margin: 100px auto; | |
margin-bottom: 150px; | |
} | |
h2 { | |
font-size: 25px; | |
margin-bottom: 50px; | |
} | |
.social_buttons { | |
width: 600px; | |
margin: 0 auto; | |
} | |
.social_buttons a { | |
width: auto; | |
height: auto; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
margin: 0 auto; | |
padding: 0px; | |
} | |
.social_buttons img { | |
width: 80px; | |
height: auto; | |
margin: 0 auto; | |
} | |
</style> | |
</head> | |
<body> | |
<main> | |
<a target="_blank" href="https://www.youtube.com/channel/UCXWTlKzN_udf9LGqlDsuByg"> | |
<img class="logo darideveloper" src="https://i.imgur.com/8QJleC5.jpeg" alt=""> | |
</a> | |
<b class="name">[name]</b> | |
<h1>Tu pedido está en camino!</h1> | |
<p>Tu numero de seguimiento es:</p> | |
<b>123456789</b> | |
<a class="main_button button" target="_blank" href="https://www.deli-very.com/seguir/123456789">Seguir envío</a> | |
<h2>Contactame en:</h2> | |
<table class="social_buttons"> | |
<tr> | |
<td> | |
<a href="https://facebook.com/deli-very" target="_blank" class="facebook"> | |
<img src="https://i.imgur.com/eCUHNbJ.jpg" alt=""> | |
</a> | |
</td> | |
<td> | |
<a href="https://api.whatsapp.com/send?phone=525512345678&text=Hola%20Deli-Very!" target="_blank" class="whatsapp"> | |
<img src="https://i.imgur.com/GaDUtWa.jpg" alt=""> | |
</a> | |
</td> | |
<td> | |
<a href="mailto:[email protected]" target="_blank" class="gmail"> | |
<img src="https://i.imgur.com/rrnPHKJ.jpg" alt=""> | |
</a> | |
</td> | |
</tr> | |
</table> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment