-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (94 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
99 lines (94 loc) · 2.98 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>E-Invoice</title>
<link rel="stylesheet" href="./index.css" />
<link
rel="shortcut icon"
href="./ABELOV INTERNATIONAL LTD.jpg"
type="image/x-icon"
/>
</head>
<body>
<!-- invoice container -->
<div class="invoice-container">
<!-- header -->
<div class="header">
<img
class="logo"
src="./ABELOV INTERNATIONAL LTD.jpg"
alt="Company Logo"
/>
<h2>E-Invoice</h2>
</div>
<!-- bill -->
<div class="bill">
<div class="from">
<h3>Bill From:</h3>
<p>
Abelov International Ltd<br />
Address: City Emirate Plaza Block A4 & A6 <br />
Opposite Area Command Abuja Phase 1 <br />
Jalingo,Taraba State<br />
Phone: 08101726816<br />
Email: abelovinternationalltd@gmail.com
</p>
</div>
<div class="to">
<h3>Bill To:</h3>
<p>
Name: <input type="text" /><br /><br>
Address: <input type="text" /><br /><br>
Phone: <input type="tel" /> <br /><br>
Date: <input type="datetime-local" />
</p>
</div>
</div>
<!-- services -->
<div class="service-details">
<h3>Description of Services:</h3>
<br />
<p>
Description <span class="amt">Amount</span>
<span class="qty">Quantity</span>
</p>
<p>
<input type="text" placeholder="Description" />
<span>₦ <input type="text" placeholder="amount" /> </span>
<span><input type="text" placeholder="Quantity" /></span>
</p>
<p>
<input type="text" placeholder="Description" />
<span>₦ <input type="text" placeholder="amount" /> </span>
<span><input type="text" placeholder="Quantity" /></span>
</p>
<p>
<input type="text" placeholder="Description" />
<span>₦ <input type="text" placeholder="amount" /> </span>
<span><input type="text" placeholder="Quantity" /></span>
</p>
</div>
<!-- total -->
<div class="total-details">
<h3>Total Amount:</h3>
<p>₦ <input type="tel" /></p>
</div>
<!-- payment -->
<div class="payment-details">
<h3>Payment Details:</h3>
<p>Payment Method:</p>
<select name="payment">
<option value="cash">CASH</option>
<option value="transfer">TRANSFER</option>
<option value="CHEQUE">CHEQUE</option>
</select>
</div>
<!-- footer -->
<div class="print-button">
<button onclick="window.print()">Print Invoice</button>
</div>
</div>
</body>
</html>