-
Notifications
You must be signed in to change notification settings - Fork 0
/
printpage.html
68 lines (65 loc) · 2.26 KB
/
printpage.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="invoice_print.css">
<script type="text/javascript" src="new2.js"></script>
<title>Invoice</title>
</head>
<body>
<div class="main">
<p class="heading">Retail Invoices/Bill</p><br />
<p>Service by : <span class="dark">SK, Repairs Pvt.Ltd</span></p>
<p class="small">1-10-209, SK Repairs, Masab Tank, Asif Nagar, Hyderabad</p>
</div>
<hr>
<div class="grid-container">
<div class="details">
<p id="i_n">Invoice Number : 597521116498</p>
<p id="i_d">Invoice Date : 2020-04-12</p>
<p id="p_n">Phone Number : 86*****890</p>
</div>
<div class="address">
<p id="txt">Billing Address : </p>
<p id="c_name">Rama Krishna,</p>
<p>H.No : 3-13-161, Sainikipuri, ECIL, 500062.</p>
</div>
</div>
<br />
<div class="bill">
<table id="ppagetable">
<tr>
<th style="width: 50%;">Payment for</th>
<th style="width: 20%;">Company</th>
<th style="width: 5%;">Qty</th>
<th style="width: 20%;">Price</th>
<th style="width: 10%;">GST(3%)</th>
</tr>
<tr>
<td>A/C Service</td>
<td>Blue Star</td>
<td>1</td>
<td>₹3710.25/-</td>
<td>₹116.85/-</td>
</tr>
<tr>
<td colspan="2" style="text-align: center; font-size: 24px;">Total</td>
<td>1</td>
<td>₹3710.25/-</td>
<td>₹116.85/-</td>
</tr>
<tr>
<td colspan="3" style="text-align: center; font-size: 24px;">Grand Total</td>
<td colspan="2" style="text-align: center; font-size: 24px;">₹3895/-</td>
</tr>
</table>
</div>
<br /><br />
<div class="sign">
<img src="signature.png" alt="...">
<p id="m_sign">(Authorised signatory)</p>
<!-- <input type="button" value="Print" onclick="window.print()"> -->
</div>
</body>
</html>