The cost of making a pepperoni pizza at “Pizza Joe’s” is $12.95. A Hawaiian is $14.95. Tax is 5%.
The owners asks you to write a program where they enter the number of pepperoni and
Hawaiian pizzas and the subtotal, tax, and total is displayed neatly on the screen. Use tables to
display the result neatly. Make it look like a beginner did it plz.
<html>
<body>
<table>
<thead>
<tr>Pizza</tr>
<tr>Type</tr>
<tr>Cost</tr>
</thead>
<tbody>
<td>
<tr>2</tr>
<tr>Pizza Joe’s</tr>
<tr>$12.95.</tr>
</td>
<td>
<tr>1</tr>
<tr>Pizza Joe’s</tr>
<tr>$14.95.</tr>
</td>
</tbody>
</table>
</body>
</html>
Comments
Leave a comment