Untitled
unknown
plain_text
a year ago
584 B
4
Indexable
<!DOCTYPE html> <html> <head> <title>Receipt</title> </head> <body> <h1>Receipt</h1> <p>Date: <!-- Insert the date here --></p> <table> <tr> <th>Item Code</th> <th>Item Name</th> <th>Quantity</th> <th>Price</th> </tr> <!-- Add the purchased items here --> <tr> <td>001</td> <td>Apple</td> <td>5</td> <td>$5.00</td> </tr> </table> <p>Total: <!-- Insert the total amount here --></p> </body> </html>
Editor is loading...
Leave a Comment