Advertisement
Guest User

Untitled

a guest
Apr 21st, 2023
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Coffee Shop Newsletter</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. margin: 0;
  11. padding: 0;
  12. background-color: #F7F7F7;
  13. }
  14. .container {
  15. max-width: 600px;
  16. margin: 0 auto;
  17. padding: 20px;
  18. background-color: #FFFFFF;
  19. border-radius: 5px;
  20. box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  21. }
  22. h1 {
  23. font-size: 30px;
  24. text-align: center;
  25. margin-top: 0;
  26. margin-bottom: 20px;
  27. color: #8B4513;
  28. }
  29. p {
  30. font-size: 16px;
  31. line-height: 1.5;
  32. margin-bottom: 20px;
  33. }
  34. a {
  35. color: #8B4513;
  36. text-decoration: none;
  37. }
  38. img {
  39. display: block;
  40. max-width: 100%;
  41. height: auto;
  42. margin: 0 auto;
  43. }
  44. .button {
  45. display: block;
  46. margin: 0 auto;
  47. padding: 10px 20px;
  48. background-color: #8B4513;
  49. color: #FFFFFF;
  50. text-align: center;
  51. border-radius: 5px;
  52. text-decoration: none;
  53. font-size: 16px;
  54. font-weight: bold;
  55. }
  56. </style>
  57. </head>
  58. <body>
  59. <div class="container">
  60. <h1>Need a coffee break?</h1>
  61. <img src="https://dummyimage.com/600x300/000/fff" alt="Coffee Shop">
  62. <p>Hello {{User.UserAttributes.FirstName}},</p>
  63. <p>We're excited to announce our new coffee blends for this season! Whether you're in the mood for something bold and robust or light and flavorful, we've got you covered.</p>
  64. <p>Stop by our shop or order online and get <strong>30% off your first purchase</strong> with code <strong>GEO30</strong>.</p>
  65. <a href="#" class="button">Shop now</a>
  66. <p>Thank you for supporting local business!</p>
  67. <p>Best regards,</p>
  68. <p>{{User.UserAttributes.store_name}} | {{User.UserAttributes.store_address}}</p>
  69. </div>
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement