-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (84 loc) · 2.73 KB
/
Copy pathindex.html
File metadata and controls
90 lines (84 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="text-xs">
<header class="bg-sky-900 text-white flex justify-between px-20 py-10">
<div>
<div class="company-logo h-20 w-20 bg-white"></div>
<h1>Compnay name</h1>
</div>
<div class="content">
<h1 class="text-2xl mb-3">Tax Invoice</h1>
<p>Invoice number:</p>
<p>Invoice Date:</p>
<p>Email</p>
<p>Phone</p>
</div>
</header>
<main class="px-20 py-10">
<div class="flex justify-between">
<div class="mb-6">
<h1 class="text-xl mb-3">Invoice to:</h1>
<p>Customer Name</p>
<p>Company name</p>
<p>Phone</p>
<p>Email</p>
</div>
<div class="">
<h1 class="text-xl mb-3">Payment details</h1>
<p>Account no</p>
<p>Account Name</p>
<p>Branch Name</p>
</div>
</div>
<h2 class="font-bold mb-4">Your items</h2>
<header class="flex grow bg-sky-800 text-white p-2">
<p class="basis-1/4">Name</p>
<p class="basis-1/4">Price</p>
<p class="basis-1/4">Quantity</p>
<p class="basis-1/4">Total</p>
</header>
<div class="flex grow p-2 border-b-2">
<p class="basis-1/4">Pencil</p>
<p class="basis-1/4">43</p>
<p class="basis-1/4">12</p>
<p class="basis-1/4">1232</p>
</div>
<div class="flex grow p-2 border-b-2">
<p class="basis-1/4">Pencil</p>
<p class="basis-1/4">43</p>
<p class="basis-1/4">12</p>
<p class="basis-1/4">1232</p>
</div>
<div class="flex grow p-2 border-b-2">
<p class="basis-1/4">Pencil</p>
<p class="basis-1/4">43</p>
<p class="basis-1/4">12</p>
<p class="basis-1/4">1232</p>
</div>
<div class="flex justify-between mt-9">
<div class="basis-3/4">
<h1 class="text-xl">Terms and conditions</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestias,
quibusdam a. Sequi, aspernatur. Rerum quas deleniti facere? Quod
perspiciatis ut commodi voluptate nesciunt. Nostrum, nam alias
laborum eaque tempora odio.
</p>
</div>
<div class="flex flex-col grow items-end">
<p>Subtotal: 1000</p>
<p>Discount: 100</p>
<p>Tax:</p>
<p class="font-bold">Total: 3001</p>
</div>
</div>
</main>
</body>
</html>