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.

invoice_print.html 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>INSPINIA | Invoice Print</title>
  7. <link href="css/bootstrap.min.css" rel="stylesheet">
  8. <link href="font-awesome/css/font-awesome.css" rel="stylesheet">
  9. <link href="css/animate.css" rel="stylesheet">
  10. <link href="css/style.css" rel="stylesheet">
  11. </head>
  12. <body class="white-bg">
  13. <div class="wrapper wrapper-content p-xl">
  14. <div class="ibox-content p-xl">
  15. <div class="row">
  16. <div class="col-sm-6">
  17. <h5>From:</h5>
  18. <address>
  19. <strong>Inspinia, Inc.</strong><br>
  20. 106 Jorg Avenu, 600/10<br>
  21. Chicago, VT 32456<br>
  22. <abbr title="Phone">P:</abbr> (123) 601-4590
  23. </address>
  24. </div>
  25. <div class="col-sm-6 text-right">
  26. <h4>Invoice No.</h4>
  27. <h4 class="text-navy">INV-000567F7-00</h4>
  28. <span>To:</span>
  29. <address>
  30. <strong>Corporate, Inc.</strong><br>
  31. 112 Street Avenu, 1080<br>
  32. Miami, CT 445611<br>
  33. <abbr title="Phone">P:</abbr> (120) 9000-4321
  34. </address>
  35. <p>
  36. <span><strong>Invoice Date:</strong> Marh 18, 2014</span><br/>
  37. <span><strong>Due Date:</strong> March 24, 2014</span>
  38. </p>
  39. </div>
  40. </div>
  41. <div class="table-responsive m-t">
  42. <table class="table invoice-table">
  43. <thead>
  44. <tr>
  45. <th>Item List</th>
  46. <th>Quantity</th>
  47. <th>Unit Price</th>
  48. <th>Tax</th>
  49. <th>Total Price</th>
  50. </tr>
  51. </thead>
  52. <tbody>
  53. <tr>
  54. <td><div><strong>Admin Theme with psd project layouts</strong></div>
  55. <small>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</small></td>
  56. <td>1</td>
  57. <td>$26.00</td>
  58. <td>$5.98</td>
  59. <td>$31,98</td>
  60. </tr>
  61. <tr>
  62. <td><div><strong>Wodpress Them customization</strong></div>
  63. <small>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
  64. Eiusmod tempor incididunt ut labore et dolore magna aliqua.
  65. </small></td>
  66. <td>2</td>
  67. <td>$80.00</td>
  68. <td>$36.80</td>
  69. <td>$196.80</td>
  70. </tr>
  71. <tr>
  72. <td><div><strong>Angular JS & Node JS Application</strong></div>
  73. <small>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</small></td>
  74. <td>3</td>
  75. <td>$420.00</td>
  76. <td>$193.20</td>
  77. <td>$1033.20</td>
  78. </tr>
  79. </tbody>
  80. </table>
  81. </div><!-- /table-responsive -->
  82. <table class="table invoice-total">
  83. <tbody>
  84. <tr>
  85. <td><strong>Sub Total :</strong></td>
  86. <td>$1026.00</td>
  87. </tr>
  88. <tr>
  89. <td><strong>TAX :</strong></td>
  90. <td>$235.98</td>
  91. </tr>
  92. <tr>
  93. <td><strong>TOTAL :</strong></td>
  94. <td>$1261.98</td>
  95. </tr>
  96. </tbody>
  97. </table>
  98. <div class="well m-t"><strong>Comments</strong>
  99. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less
  100. </div>
  101. </div>
  102. </div>
  103. <!-- Mainly scripts -->
  104. <script src="js/jquery-2.1.1.js"></script>
  105. <script src="js/bootstrap.min.js"></script>
  106. <script src="js/plugins/metisMenu/jquery.metisMenu.js"></script>
  107. <!-- Custom and plugin javascript -->
  108. <script src="js/inspinia.js"></script>
  109. <script type="text/javascript">
  110. window.print();
  111. </script>
  112. </body>
  113. </html>