How we can create an Email Template for sending Newsletters? Solution: HTML Email Template With Inline CSS, Newsletter Template With embedded Images.
Maybe you daily receiving hundred or emails regarding your subscribed newsletter sites. Have you ever thought about how they send a mail to their million of subscriber? If you think they send email to users one by one manually or selecting by group, then you are wrong. Actually, they send a single email to all subscriber using a single template.
Today you will learn to create Email Template like every day you get. There are many bulk Email sending services like MailChimp for the small & medium level business. Huge websites develop their own email service program. If you are using now an email service then you can choose many templates or create your own.
So, Today I am sharing an HTML Email Template With Inline CSS. In other words, A Stylish Newsletter Template With Images like an infographic. I am using inline CSS because most of the email clients prefer inline CSS. Inline CSS is safest when it comes to rendering compatibility across the different email clients.
If you are thinking now how this email template actually is, then see the preview given below.
Preview Of Newsletter Template With Images
See this video preview to getting an idea of how this template looks like.
Now you can see this visually. If you like this then get the source code of its.
You May Also Like:
HTML Email Template With Inline CSS Source Code
Before sharing source code, let’s talk about this. As you know I have used inline CSS for creating this template, because inline CSS is the safest way to render from all email kinds like Gmail, Yahoo Mail, etc (more info). Normally we write CSS like this h1 { color: black; font-size: 20px; }
but using inline CSS we have to write the code like this: <h1 style="color: black; font-size: 20px;">
Because we are using inline CSS for this email template, there we have just one file with many lines of codes. You will understand the codes easily because they are the basic commands of HTML & CSS. For using this on your website, just copy these codes and change the matters like text & images.
For creating this email template, you have to create just a single file of HTML. Follow the steps to creating this without any error.
index.html
Create an HTML file named ‘index.html‘ or any name as you want and copy paste these code given here below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 |
<!DOCTYPE html> <!--Code By Webdevtrick ( https://webdevtrick.com )--> <html lang="en"> <head> <meta charset="UTF-8"> <title>HTML Email Template | Webdevtrick.com</title> </head> <body> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <!--HEADER --> <tbody><tr> <td align="center"> <table class="col-600" width="600" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr> <td align="center" valign="top" background="https://images.pexels.com/photos/1936299/pexels-photo-1936299.jpeg?cs=srgb&dl=artificial-intelligence-codes-developing-1936299.jpg&fm=jpg" bgcolor="#66809b" style="background-size:cover; background-position:top;height=" 400""=""> <table class="col-600" width="600" height="400" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="40"></td> </tr> <tr> <td align="center" style="line-height: 0px;"> <img style="display:block; line-height:0px; font-size:0px; border:0px;" src="https://webdevtrick.com/wp-content/uploads/logo-fb-1.png" width="109" height="115" alt="logo"> </td> </tr> <tr> <td align="center" style="font-family: 'Raleway', sans-serif; font-size:37px; color:#ffffff; line-height:24px; font-weight: bold; letter-spacing: 5px;"> WELCOME <span style="font-family: 'Raleway', sans-serif; font-size:37px; color:#ffffff; line-height:39px; font-weight: 300; letter-spacing: 5px;">TO NEWSLETTER</span> </td> </tr> <tr> <td align="center" style="font-family: 'Lato', sans-serif; font-size:15px; color:#ffffff; line-height:24px; font-weight: 300;"> Now you will recive Email everytime automatically <br>on our new updates. </td> </tr> <tr> <td height="50"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <!-- END HEADERR --> <!-- START SHOWCASE --> <tr> <td align="center"> <table class="col-600" width="600" border="0" align="center" cellpadding="0" cellspacing="0" style="margin-left:20px; margin-right:20px; border-left: 1px solid #dbd9d9; border-right: 1px solid #dbd9d9;"> <tbody><tr> <td height="35"></td> </tr> <tr> <td align="center" style="font-family: 'Raleway', sans-serif; font-size:22px; font-weight: bold; color:#333;">CONTENT SHOWCASE</td> </tr> <tr> <td height="10"></td> </tr> <tr> <td align="center" style="font-family: 'Lato', sans-serif; font-size:14px; color:#757575; line-height:24px; font-weight: 300;"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur convallis maximus mollis.<br> Aenean purus magna, dignissim in aliquam quis, ullamcorper a dui. </td> </tr> </tbody></table> </td> </tr> <tr> <td align="center"> <table class="col-600" width="600" border="0" align="center" cellpadding="0" cellspacing="0" style="border-left: 1px solid #dbd9d9; border-right: 1px solid #dbd9d9; "> <tbody><tr> <td height="10"></td> </tr> <tr> <td> <table class="col3" width="183" border="0" align="left" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="30"></td> </tr> <tr> <td align="center"> <table class="insider" width="133" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr align="center" style="line-height:0px;"> <td> <img style="display:block; line-height:0px; font-size:0px; border:0px;" src="https://webdevtrick.com/wp-content/uploads/email.png" width="78" height="78" alt="icon"> </td> </tr> <tr> <td height="15"></td> </tr> <tr align="center"> <td style="font-family: 'Raleway', Arial, sans-serif; font-size:20px; color:#333; line-height:24px; font-weight: bold;">Contact</td> </tr> <tr> <td height="10"></td> </tr> <tr align="center"> <td style="font-family: 'Lato', sans-serif; font-size:14px; color:#757575; line-height:24px; font-weight: 300;">Lorem ipsum dolor sit amet.</td> </tr> </tbody></table> </td> </tr> <tr> <td height="30"></td> </tr> </tbody></table> <table width="1" height="20" border="0" cellpadding="0" cellspacing="0" align="left"> <tbody><tr> <td height="20" style="font-size: 0;line-height: 0;border-collapse: collapse;"> <p style="padding-left: 24px;"> </p> </td> </tr> </tbody></table> <table class="col3" width="183" border="0" align="left" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="30"></td> </tr> <tr> <td align="center"> <table class="insider" width="133" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr align="center" style="line-height:0px;"> <td> <img style="display:block; line-height:0px; font-size:0px; border:0px;" src="https://webdevtrick.com/wp-content/uploads/work.png" width="78" height="78" alt="icon"> </td> </tr> <tr> <td height="15"></td> </tr> <tr align="center"> <td style="font-family: 'Raleway', sans-serif; font-size:20px; color:#333; line-height:24px; font-weight: bold;">About</td> </tr> <tr> <td height="10"></td> </tr> <tr align="center"> <td style="font-family: 'Lato', sans-serif; font-size:14px; color:#757575; line-height:24px; font-weight: 300;">Lorem ipsum dolor sit amet.</td> </tr> </tbody></table> </td> </tr> <tr> <td height="30"></td> </tr> </tbody></table> <table width="1" height="20" border="0" cellpadding="0" cellspacing="0" align="left"> <tbody><tr> <td height="20" style="font-size: 0;line-height: 0;border-collapse: collapse;"> <p style="padding-left: 24px;"> </p> </td> </tr> </tbody></table> <table class="col3" width="183" border="0" align="right" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="30"></td> </tr> <tr> <td align="center"> <table class="insider" width="133" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr align="center" style="line-height:0px;"> <td> <img style="display:block; line-height:0px; font-size:0px; border:0px;" src="https://webdevtrick.com/wp-content/uploads/computer.png" width="78" height="78" alt="icon"> </td> </tr> <tr> <td height="15"></td> </tr> <tr align="center"> <td style="font-family: 'Raleway', sans-serif; font-size:20px; color:#333; line-height:24px; font-weight: bold;">Services</td> </tr> <tr> <td height="10"></td> </tr> <tr align="center"> <td style="font-family: 'Lato', sans-serif; font-size:14px; color:#757575; line-height:24px; font-weight: 300;">Lorem ipsum dolor sit amet.</td> </tr> </tbody></table> </td> </tr> <tr> <td height="30"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <tr> <td height="5"></td> </tr> <!-- END SHOWCASE --> <!-- START TITLE --> <tr> <td align="center"> <table align="center" class="col-600" width="600" border="0" cellspacing="0" cellpadding="0"> <tbody><tr> <td align="center" bgcolor="#333"> <table class="col-600" width="600" align="center" border="0" cellspacing="0" cellpadding="0"> <tbody><tr> <td height="33"></td> </tr> <tr> <td> <table class="col1" width="183" border="0" align="left" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="18"></td> </tr> <tr> <td align="center"> <img style="display:block; line-height:0px; font-size:0px; border:0px;" class="images_style" src="https://webdevtrick.com/wp-content/uploads/email-template.png" alt="img" width="156" height="160"> </td> </tr> </tbody></table> <table class="col3_one" width="380" border="0" align="right" cellpadding="0" cellspacing="0"> <tbody><tr align="left" valign="top"> <td style="font-family: 'Raleway', sans-serif; font-size:20px; color:#fbb016; line-height:30px; font-weight: bold;">Another Title Heading! </td> </tr> <tr> <td height="5"></td> </tr> <tr align="left" valign="top"> <td style="font-family: 'Lato', sans-serif; font-size:14px; color:#fff; line-height:24px; font-weight: 300;"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur convallis maximus mollis. Aenean purus magna, dignissim in aliquam quis, ullamcorper a dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae. </td> </tr> <tr> <td height="10"></td> </tr> <tr align="left" valign="top"> <td> <table class="button" style="border: 2px solid #fff;" bgcolor="#fbb016" width="30%" border="0" cellpadding="0" cellspacing="0"> <tbody><tr> <td width="10"></td> <td height="30" align="center" style="font-family: 'Open Sans', Arial, sans-serif; font-size:13px; color:#ffffff;"> <a href="#" style="color:#ffffff; text-decoration: none;">Read more</a> </td> <td width="10"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <tr> <td height="33"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <!-- END TITLE --> <!--ABOUT --> <tr> <td align="center"> <table class="col-600" width="600" border="0" align="center" cellpadding="0" cellspacing="0" style="margin-left:20px; margin-right:20px;"> <tbody><tr> <td align="center"> <table class="col-600" width="600" border="0" align="center" cellpadding="0" cellspacing="0" style=" border-left: 1px solid #dbd9d9; border-right: 1px solid #dbd9d9;"> <tbody><tr> <td height="50"></td> </tr> <tr> <td align="right"> <table class="col2" width="287" border="0" align="right" cellpadding="0" cellspacing="0"> <tbody><tr> <td align="center" style="line-height:0px;"> <img style="display:block; line-height:0px; font-size:0px; border:0px;" class="images_style" src="https://webdevtrick.com/wp-content/uploads/email-template-1.png" width="169" height="138"> </td> </tr> </tbody></table> <table width="287" border="0" align="left" cellpadding="0" cellspacing="0" class="col2" style=""> <tbody><tr> <td align="center"> <table class="insider" width="237" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr align="left"> <td style="font-family: 'Raleway', sans-serif; font-size:23px; color:#333; line-height:30px; font-weight: bold;">Our Services</td> </tr> <tr> <td height="5"></td> </tr> <tr> <td style="font-family: 'Lato', sans-serif; font-size:14px; color:#7f8c8d; line-height:24px; font-weight: 300;"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur convallis maximus mollis. Aenean purus magna, dignissim in aliquam quis, ullamcorper a dui. </td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <!-- END ABOUT --> <!-- CHECKOUT BELOW --> <tr> <td align="center"> <table align="center" width="100%" border="0" cellspacing="0" cellpadding="0" style=" border-left: 1px solid #dbd9d9; border-right: 1px solid #dbd9d9;"> <tbody><tr> <td height="50"></td> </tr> <tr> <td align="center" bgcolor="#333"> <table class="col-600" width="600" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="35"></td> </tr> <tr> <td align="center" style="font-family: 'Raleway', sans-serif; font-size:20px; color:#fbb016; line-height:24px; font-weight: bold;">Our Pricing</td> </tr> <tr> <td height="20"></td> </tr> <tr> <td align="center" style="font-family: 'Lato', sans-serif; font-size:14px; color:#fff; line-height: 1px; font-weight: 300;"> Check out our price below. </td> </tr> <tr> <td height="40"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <!-- END CHECKOUT BELOW --> <!--START PRICING--> <tr> <td align="center"> <table width="600" class="col-600" align="center" border="0" cellspacing="0" cellpadding="0" style=" border-left: 1px solid #dbd9d9; border-right: 1px solid #dbd9d9;"> <tbody><tr> <td height="50"></td> </tr> <tr> <td> <table style="border:1px solid #e2e2e2;" class="col2" width="287" border="0" align="left" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="40" align="center" bgcolor="#333" style="font-family: 'Raleway', sans-serif; font-size:18px; color:#fbb016; line-height:30px; font-weight: bold;">Starter</td> </tr> <tr> <td align="center"> <table class="insider" width="237" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="20"></td> </tr> <tr align="center" style="line-height:0px;"> <td style="font-family: 'Lato', sans-serif; font-size:48px; color:#fbb016; font-weight: bold; line-height: 44px;">$99</td> </tr> <tr> <td height="15"></td> </tr> <tr> <td height="15"></td> </tr> <tr> <td align="center"> <table width="100" border="0" align="center" cellpadding="0" cellspacing="0" style="border: 2px solid #fbb016;"> <tbody><tr> <td width="10"></td> <td height="30" align="center" style="font-family: 'Lato', sans-serif; font-size:14px; font-weight: 300; color:#333;"> <a href="#" style="color: #333; text-decoration: none;">Learn More</a> </td> <td width="10"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <tr> <td height="30"></td> </tr> </tbody></table> <table width="1" height="20" border="0" cellpadding="0" cellspacing="0" align="left"> <tbody><tr> <td height="20" style="font-size: 0;line-height: 0;border-collapse: collapse;"> <p style="padding-left: 24px;"> </p> </td> </tr> </tbody></table> <table style="border:1px solid #e2e2e2;" class="col2" width="287" border="0" align="right" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="40" align="center" bgcolor="#333" style="font-family: 'Raleway', sans-serif; font-size:18px; color:#fbb016; line-height:30px; font-weight: bold;">Advance</td> </tr> <tr> <td align="center"> <table class="insider" width="237" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="20"></td> </tr> <tr align="center" style="line-height:0px;"> <td style="font-family: 'Lato', sans-serif; font-size:48px; color:#fbb016; font-weight: bold; line-height: 44px;">$150</td> </tr> <tr> <td height="30"></td> </tr> <tr align="center"> <td> <table width="100" border="0" align="center" cellpadding="0" cellspacing="0" style=" border: 2px solid #fbb016;"> <tbody><tr> <td width="10"></td> <td height="30" align="center" style="font-family: 'Lato', sans-serif; font-size:14px; font-weight: 300; color:#333;"> <a href="#" style="color: #333; text-decoration: none;">Learn More</a> </td> <td width="10"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <tr> <td height="30"></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> <!-- END PRICING --> <!-- START FOOTER --> <tr> <td align="center"> <table align="center" width="100%" border="0" cellspacing="0" cellpadding="0" style=" border-left: 1px solid #dbd9d9; border-right: 1px solid #dbd9d9;"> <tbody><tr> <td height="50"></td> </tr> <tr> <td align="center" bgcolor="#333" background="https://webdevtrick.com/wp-content/uploads/image-slider1.jpg" height="185"> <table class="col-600" width="600" border="0" align="center" cellpadding="0" cellspacing="0"> <tbody><tr> <td height="25"></td> </tr> <tr> <td align="center" style="font-family: 'Raleway', sans-serif; font-size:26px; font-weight: 500; color:#fbb016; background-color: #333;">Follow Us On Social Media</td> </tr> <tr> <td height="25"></td> </tr> </tbody></table><table align="center" width="35%" border="0" cellspacing="0" cellpadding="0"> <tbody><tr> <td align="center" width="30%" style="vertical-align: top;"> <a href="https://www.facebook.com/designmodo" target="_blank"> <img src="https://webdevtrick.com/wp-content/uploads/icon-twitter.png"> </a> </td> <td align="center" class="margin" width="30%" style="vertical-align: top;"> <a href="https://twitter.com/designmodo" target="_blank"> <img src="https://webdevtrick.com/wp-content/uploads/icon-fb.png"> </a> </td> <td align="center" width="30%" style="vertical-align: top;"> <a href="https://plus.google.com/+Designmodo/posts" target="_blank"> <img src="https://webdevtrick.com/wp-content/uploads/icon-googleplus.png"> </a> </td> </tr> </tbody></table> </td></tr></tbody></table> </td> </tr> </tbody></table> </td> </tr> <!-- END FOOTER --> </tbody></table> </body> </html> |
That’s It. I am giving this codes section’s height 800px otherwise it will be very long. Codes Section’s top right side has a copy button or you can double click on it to copy the codes. For mobile users, there has a code bracket symbol to selecting & copy the codes.
Now you successfully created HTML Email Template With Inline CSS, a Stylish Newsletter Template With Images. If you have any doubt or question comment down below.
Thanks For Visiting, Keep Visiting.
Thank you for this awesome post.
Will try to use it on my gk website
Thank you.
Awesome tutorial..
Thanks, stay connected.
can you do a tutorial for advanced email tables using nested tables
nice job
Nice try to make one video for
HTML Template with inline CSS
Thank you very much! Exactly what I’ve been looking for.
[…] Development Trick’s HTML Email Template With Inline CSS | Newsletter Template With Images The table has a width of 600 and a height of 600. On this border, align = center […]