12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <style>
- .mainSection {
- width: 50%;
- margin: auto;
- font-family: "Muli", Arial, sans-serif;
- background-color: #12325c;
- border-radius: 22px 22px 0 0;
- padding: 50px 0;
- text-align: center;
- color: #fff;
- }
- .container p {
- margin: 30px 0;
- }
- .container .btn {
- background-color: #ff6666;
- padding: 12px 30px;
- border: none;
- border-radius: 0px 22px 22px 22px;
- color: #fff;
- }
- </style>
- </head>
- <body>
- <div style="width: 50%;margin: auto;" class="float-left">
- <img width="150" height="50"
- src="G:\neom-Back\NeomTechERP\NeomtechERP.Auth\NeomtechERP.Auth.Application\EmailTemps\bcare.svg"
- alt="NeomLogo" />
- </div>
- <section class="mainSection">
- <div class="container">
- <h1>[NotificationType]</h1>
- <p>[Info]</p>
- <a href=[Link] target="_blank" class="btn">click here</a>
- </div>
- </section>
- </body>
- </html>
|