Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <!-- email.html -->
  2. <!DOCTYPE html>
  3. <html style="margin: 0; padding: 0; height: 100%;">
  4. <head>
  5. <title>Responsive HTML Email.</title>
  6. <style type="text/css">
  7.  
  8. /* For screen size of 780px , vertically align the image */
  9. @media screen and (max-device-width: 768px){
  10. #oweceej {
  11. vertical-align: top !important;
  12. }
  13. }
  14.  
  15. /* For screen size of 353 px, ensure text doesn't infringe the image */
  16. @media screen and (min-device-width: 353px){
  17. .gratitude {
  18. margin-left: 5% !important;
  19. line-height: 1.3em;
  20. }
  21. }
  22.  
  23. </style>
  24. </head>
  25. <body style="margin: 0; text-align: justify; height: 100%">
  26. <table border="0" width="100%" cellpadding="20" cellspacing="0" align="center" style="background-color: #99cc00; font-family: Arial, sans-serif; height: 100%">
  27. <tr>
  28. <td>
  29. <table width="100%">
  30. <tr>
  31. <td align="center">
  32. <h1>My final assignment of General Assembly's web design course.</h1>
  33. </td>
  34. </tr>
  35. </table>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td>
  40. <table width="100%">
  41. <tr>
  42. <td width="25%" align="center">
  43. <img src="images/oweceej1.jpg" id="oweceej">
  44. </td>
  45. <td width="75%">
  46. <p class="gratitude"> To the staff at General Assembly (GA). This is my final assignment. I registered
  47. on this course to strengthen my understanding of HTML & CSS, especially CSS. That aim
  48. has been fulfilled. I would like to say a big thank you to all the mentors, specifically
  49. Madeline & Margaret for feedback. An extra special thanks is reserved for John H, for
  50. sparing me some of his much sought after time.
  51. </p>
  52. <p class="gratitude">I learned a lot and have no regrets, thank you to everyone.</p>
  53. </td>
  54. </tr>
  55. </table>
  56. </td>
  57. </tr>
  58. <tr>
  59. <td>
  60. <table width="100%" cellspacing="0" cellpadding="0">
  61. <tr>
  62. <td width="100%">
  63. <p>If you want to contact me use: <a href="mailto:oweceej@hotmail.com">oweceej@hotmail.com</a></p>
  64. </td>
  65. </tr>
  66. </table>
  67. </td>
  68. </tr>
  69. </table>
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement