JezK
Edit File: invoice.php
<!DOCTYPE html> <html> <head> <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;800&family=Mulish:wght@300;400;500;600;700&display=swap" rel="stylesheet"> <title>Invoice Template</title> </head> <body style="font-family:Montserrat; margin: 0; padding: 20px;"> <h1 style="text-align: center;">Invoice</h1> <table style="width:100%; padding:1rem"> <tr> <td> <h2>Invoice to:</h2> </td> <td></td> </tr> <tr> <td style="color: #24394D;"> <p><span style=" color: #24394d85">Name: </span>Rasheeda</p> <p><span style=" color: #24394d85">Email: </span>rasheeda@krify.net</p> <p><span style=" color: #24394d85">Phone Number: </span>39303944580</p> <p><span style=" color: #24394d85">Address: </span>Todly, Summer</p> </td> <td style="text-align:right;color: #24394D;"> <p><label style=" color: #24394d85">Invoice: </label>#234</p> <p><label style=" color: #24394d85">Date:</label> 23-2-2023</p> </td> </tr> </table> <div style="border-top:1px dashed"> <table style="width: 100%; padding:1rem"> <tr> <td> <h2>Products & Services:</h2> </td> <td></td> </tr> <tr> <td style="line-height:2"> Tire with Brake Unit (1) </td> <td style="line-height:2;text-align:right">Rs. 2000</td> </tr> <tr> <td style="line-height:2"> Tire with Brake Unit (1) </td> <td style="line-height:2;text-align:right">Rs. 2000</td> </tr> </table> </div> <div style="border-top:1px dashed"> <p style="text-align:right">Sub Total Amount : Rs 2000</p> <p style="text-align:right">Total tax: Rs 2000</p> <p style="text-align:right">Coupon: Rs 2000</p> <p style="text-align:right"><b>Grand total: Rs 2000</b></p> </div> </body> </html>