TAMALES EN HOJA DE PLATANO Y HOJA DE MAIZ

SALSA VERDE CON POLLO

SALSA ROJA CON POLLO

VERDOLAGAS EN SALA VERDE CON POLLO}

<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>

<body><form action="mailto:example@email.com" method="post" enctype="text/plain">
<h2>Client Information</h2>
<label for="client_name">Client Name:</label>
<input type="text" id="client_name" name="client_name">


<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone">


<label for="email">Email:</label>
<input type="email" id="email" name="email">



<h2>Order Information</h2>
<table>
<tr>
<th>Quantity/Product</th>
<th>Product/Description</th>
<th>Add</th>
<th>Total</th>
</tr>
<tr>
<td>
<input type="number" id="quantity" name="quantity">
<select id="product" name="product">
<option value="Product 1">Product 1</option>
<option value="Product 2">Product 2</option>
<option value="Product 3">Product 3</option>
</select>
</td>
<td>
<select id="product-list" name="product-list">
<option value="Product 1">Product 1 - Description 1</option>
<option value="Product 2">Product 2 - Description 2</option>
<option value="Product 3">Product 3 - Description 3</option>
</select>
</td>
<td><button type="button" onclick="addProduct()">Add</button></td>
<td><input type="number" id="total" name="total" readonly></td>
</tr>
</table>

<input type="submit" value="Send Order">
</form>

<script>
let total = 0;

function addProduct() {
let quantity = document.getElementById('quantity').value;
let product = document.getElementById('product').value;
let price = 10; // default price

```let productTotal = quantity * price;
total += productTotal;

document.getElementById('total').value = total;
```
}
</script>

</body>
</html>