hjkhghtjhjjhjhjhjhjjhjhjjhrrtrtoirh
bnmbertsurrttrtrtrtrjhjhjjhjhhjhjhjhf'tdfg
/
home
/
u506006416
/
public_html
/
public_html
/
demo
/
torpedo
/
Upload FileeE
HOME
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Invoice - Torpedo Learning</title> <style> * { box-sizing: border-box; } body { font-family: 'Segoe UI', sans-serif; margin: 0; padding: 20px; background-color: #f9f9f9; } .invoice-box { max-width: 900px; margin: auto; background: white; padding: 30px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } .logo { font-size: 36px; font-weight: bold; color: #3c3c3c; } .logo span { color: #7c3aed; } .header { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 30px; } .section-title { font-weight: bold; margin-bottom: 5px; } .invoice-info { text-align: right; color: #666; } table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 15px; } th, td { padding: 10px; border: 1px solid #ddd; text-align: left; } th { background-color: #f2f2f2; } .total-row { font-weight: bold; background-color: #fafafa; } .note { margin-top: 25px; font-size: 13px; color: #666; } @media (max-width: 600px) { .header { flex-direction: column; text-align: left; } .invoice-info { text-align: left; margin-top: 20px; } } </style> </head> <body> <div class="invoice-box"> <div class="logo">Torpedo <span>Learning</span></div> <div class="header"> <div> <div class="section-title">Supplier details:</div> <div>Torpedo Torpedo<br/> Delhi, Tower B,<br/> Unitech Cyber Park, Sector 39,<br/> Gurgaon, Haryana, India, 122003<br/> GSTIN: 1100393<br/> PAN no: 12345678 </div> </div> <div class="invoice-info"> <div><strong>ORIGINAL FOR RECIPIENT</strong></div> <div style="font-size: 22px; font-weight: 600;">TAX INVOICE</div> <div>Invoice #: IN2024-2249383</div> <div>Invoice date: 22/08/2024</div> </div> </div> <div class="section-title">Recipient details:</div> <div>Student Name<br/> student@gmail.com<br/> National Capital Territory of Delhi, 07, DL, India </div> <table> <thead> <tr> <th>Description</th> <th>HSN Code</th> <th>Quantity</th> <th>Taxable Value</th> <th>CGST (0%)</th> <th>SGST/UGST (0%)</th> <th>IGST (18%)</th> <th>Total Amount</th> </tr> </thead> <tbody> <tr> <td>Java Programming for Complete Beginners</td> <td>9984 33</td> <td>1.0</td> <td>338.14</td> <td>0.00</td> <td>0.00</td> <td>60.86</td> <td>399.00</td> </tr> <tr class="total-row"> <td colspan="3">Total</td> <td>338.14</td> <td colspan="2"></td> <td>60.86</td> <td>INR 399.00</td> </tr> </tbody> </table> <p class="note">This is a system generated invoice and does not require a signature or a digital signature.</p> </div> </body> </html>