EmailTemplate.html 1007 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <style>
  6. .mainSection {
  7. width: 50%;
  8. margin: auto;
  9. font-family: "Muli", Arial, sans-serif;
  10. background-color: #12325c;
  11. border-radius: 22px 22px 0 0;
  12. padding: 50px 0;
  13. text-align: center;
  14. color: #fff;
  15. }
  16. .container p {
  17. margin: 30px 0;
  18. }
  19. .container .btn {
  20. background-color: #ff6666;
  21. padding: 12px 30px;
  22. border: none;
  23. border-radius: 0px 22px 22px 22px;
  24. color: #fff;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div style="width: 50%;margin: auto;" class="float-left">
  30. <img width="150" height="50"
  31. src="G:\neom-Back\NeomTechERP\NeomtechERP.Auth\NeomtechERP.Auth.Application\EmailTemps\bcare.svg"
  32. alt="NeomLogo" />
  33. </div>
  34. <section class="mainSection">
  35. <div class="container">
  36. <h1>[NotificationType]</h1>
  37. <p>[Info]</p>
  38. <a href=[Link] target="_blank" class="btn">click here</a>
  39. </div>
  40. </section>
  41. </body>
  42. </html>