Advertisement
adwas33

Untitled

Apr 12th, 2022
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl" xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <head>
  5. <meta charset="UTF-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8. <link rel="preconnect" href="https://fonts.googleapis.com" />
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  10. <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet" />
  11. <style style="display: none">
  12. * {
  13. padding: 0;
  14. margin: 0;
  15. box-sizing: border-box;
  16. display: block;
  17. }
  18. </style>
  19. <style style="display: none">
  20. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
  21. </style>
  22. </head>
  23. <body>
  24. <div style="width: 100%; font-family: 'Poppins', sans-serif; background-color: #e5e5e5">
  25. <img src="https://i.imgur.com/ZSq5qftl.png" alt="Zdjęcie w banerze" style="margin: 0 auto; width: 600px; height: 245px; object-fit: cover" />
  26. <div style="max-width: 600px; margin: 0 auto; padding: 30px 40px; background-color: #fff">
  27. <h1 style="width: 100%; line-height: 36px; font-size: 24px; font-weight: 700; padding: 40px 0">
  28. <span th:text="${userWithMessage.name}">Oskar Kowalski </span>wysłał nową wiadomość poprzez stronę DTH!
  29. </h1>
  30. <p th:text="${userWithMessage.message}" style="font-weight: 400; font-size: 18px; line-height: 27px; margin-bottom: 60px; width: 100%">
  31. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vulputate libero et velit interdum, ac aliquet odio mattis.
  32. </p>
  33. <div style="padding: 40px 30px; margin-bottom: 70px; width: 100%; background: #474f5a; font-size: 18px">
  34. <h2 style="font-weight: 700; font-size: 18px; text-transform: capitalize; width: 100%; margin-bottom: 40px; color: #fff">
  35. Dane kontaktowe:
  36. </h2>
  37. <p style="width: 100%; margin-bottom: 20px">
  38. <span style="color: #85bd4b; font-weight: 600; width: 100%">Imię i nazwisko</span>
  39. <span th:text="${userWithMessage.name}" style="color: #fff; width: 100%">Oskar Kowalski</span>
  40. </p>
  41. <p style="width: 100%; color: #85bd4b; margin-bottom: 20px">
  42. <span style="color: #85bd4b; font-weight: 600; width: 100%">Email</span>
  43. <span th:text="${userWithMessage.email}" style="color: #fff; width: 100%">oskarkowalski@poczta.onet.pl</span>
  44.  
  45. </p>
  46. </div>
  47. <p style="font-weight: 400; font-size: 14px; line-height: 27px; margin-block: 25px 40px; width: 100%; color: #919191">
  48. Lorem ipsum dolor sit amet consectetur adipisicing elit. A porro aliquam laudantium vero nisi eveniet hic iusto laborum dolore ad, veniam
  49. quo ducimus consectetur in libero?
  50. </p>
  51. </div>
  52. </div>
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement