Theme Inspinia
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

billing.html 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta name="viewport" content="width=device-width" />
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <title>Billing e.g. invoices and receipts</title>
  7. <link href="styles.css" media="all" rel="stylesheet" type="text/css" />
  8. </head>
  9. <body>
  10. <table class="body-wrap">
  11. <tr>
  12. <td></td>
  13. <td class="container" width="600">
  14. <div class="content">
  15. <table class="main" width="100%" cellpadding="0" cellspacing="0">
  16. <tr>
  17. <td class="content-wrap aligncenter">
  18. <table width="100%" cellpadding="0" cellspacing="0">
  19. <tr>
  20. <td class="content-block">
  21. <h2>Thanks for using INSPINIA</h2>
  22. </td>
  23. </tr>
  24. <tr>
  25. <td class="content-block">
  26. <table class="invoice">
  27. <tr>
  28. <td>Anna Smith<br>Invoice #12345<br>June 01 2015</td>
  29. </tr>
  30. <tr>
  31. <td>
  32. <table class="invoice-items" cellpadding="0" cellspacing="0">
  33. <tr>
  34. <td>Service 1</td>
  35. <td class="alignright">$ 20.00</td>
  36. </tr>
  37. <tr>
  38. <td>Service 2</td>
  39. <td class="alignright">$ 10.00</td>
  40. </tr>
  41. <tr>
  42. <td>Service 3</td>
  43. <td class="alignright">$ 6.00</td>
  44. </tr>
  45. <tr class="total">
  46. <td class="alignright" width="80%">Total</td>
  47. <td class="alignright">$ 36.00</td>
  48. </tr>
  49. </table>
  50. </td>
  51. </tr>
  52. </table>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td class="content-block">
  57. <a href="#">View in browser</a>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td class="content-block">
  62. Company Inc. 123 Van Ness, San Francisco 94102
  63. </td>
  64. </tr>
  65. </table>
  66. </td>
  67. </tr>
  68. </table>
  69. <div class="footer">
  70. <table width="100%">
  71. <tr>
  72. <td class="aligncenter content-block">Questions? Email <a href="mailto:">support@company.inc</a></td>
  73. </tr>
  74. </table>
  75. </div></div>
  76. </td>
  77. <td></td>
  78. </tr>
  79. </table>
  80. </body>
  81. </html>