JezK
Edit File: invoice.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Invoice</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> body { font-family: Arial, sans-serif; margin: 20px; } .header { background-color: #232933; color: white; padding: 0px; display: flex; justify-content: space-between; align-items: center; height: 90px; } .header .contact { display: flex; align-items: center; } .header .contact img { margin-right: 10px; } .addrblock{ display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0; background-color: #d62027; border-bottom-left-radius: 100px; width: 60%; } .contactinfo { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 30px; } .addr{ width: 30%; display: flex; align-items: center; } .vborder { border: 1px solid; margin: 5px; height: 50px; } .billing { margin-top: 20px; font-weight: bold; } .invoice-details { margin-top: 10px; margin-top: 10px; display: flex; justify-content: space-between; } .invoice-table { width: 100%; border-collapse: collapse; margin-top: 20px; } .invoice-table th, .invoice-table td { border: 1px solid #000; padding: 10px; text-align: center; } .invoice-table th { background-color: #d62027; color: white; } .total { font-weight: bold; background-color: #d62027; color: white; } .terms { margin-top: 20px; color: red; } .terms a { color: blue; text-decoration: none; } </style> </head> <body> <div class="header"> <div class="contact"> </div> <div class="addrblock"> <div class="contactinfo"> <div class="phone"> <i class="fa fa-phone" style="font-size:20px"></i> <span class="vborder"></span> 8008 000 000 </div> <div class="addr"> <i class="fa fa-map-marker" style="font-size:20px"></i> <div class="vborder"></div> <div> Opposite to Muttagopala Krishna Bridge, Backside to RMC, Kakinada. </div> </div> </div> </div> </div> <div class="invoice-details"> <div class="billing"> <p style="color:red">Billing Address:</p> <p>RDO PEDAPURAM,<br>RDO’S OFFICE, PEDDAPURAM DIVISION<br>KAKINADA DISTRICT, ANDHRA PRADESH</p> </div> <div> <h2>Invoice</h2> <p><strong>Invoice No.:</strong> 05897</p> <p><strong>Date:</strong> 16/03/2025</p> </div> </div> <table class="invoice-table"> <tr> <th>Item Name</th> <th>Ceramic Brand Installed</th> <th>Number of Years</th> <th>Price / Year</th> <th>Total</th> </tr> <tr> <td><strong>Ceramic Coating (SUV)</strong></td> <td>CARPRO CQUK 3.0</td> <td>5 Years</td> <td>₹8000</td> <td>₹40000.00</td> </tr> <tr class="total"> <td colspan="4">Total</td> <td>₹40000.00</td> </tr> </table> <div class="terms"> <h3>Terms and Conditions</h3> <p>1. Warranty Card can be seen and validated at <a href="https://www.detailingedition.com">www.detailingedition.com</a></p> <p>2. Maintenance package has 10 free maintenances, usable every six months from the date of billing.</p> <p>3. Warranty and claims can be done only at Kakinada showroom.</p> </div> <p><strong>For: DETAILING EDITION</strong></p> </body> </html>