29 lines
915 B
HTML
29 lines
915 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Display Invoice</title>
|
|
<link rel="stylesheet" href="invoices.css">
|
|
</head>
|
|
<body>
|
|
<h1>Display Invoice</h1>
|
|
<div>
|
|
<label for="company">Company:</label>
|
|
<input type="text" name="company" id="company" value="Murach Books">
|
|
</div>
|
|
<div>
|
|
<label for="amount_due">Amount Due:</label>
|
|
<input type="text" name="amount_due" id="amount_due" value="100">
|
|
</div>
|
|
<div>
|
|
<label for="invoice_date">Invoice Date:</label>
|
|
<input type="text" name="invoice_date" id="invoice_date" value="12/1/2023">
|
|
</div>
|
|
<div>
|
|
<label> </label>
|
|
<input type="button" id="display_invoice" value="Display Invoice">
|
|
</div>
|
|
<script src="invoices.js"></script>
|
|
</body>
|
|
</html> |