Spaces:
Running
Running
Update index.html
Browse files- index.html +10 -0
index.html
CHANGED
|
@@ -9,11 +9,21 @@
|
|
| 9 |
<body>
|
| 10 |
<div class="container">
|
| 11 |
<h1>Sales Tax Calculator</h1>
|
|
|
|
| 12 |
<label for="state">Select your state:</label>
|
| 13 |
<select id="state">
|
| 14 |
<option value="">--Choose a state--</option>
|
| 15 |
</select>
|
| 16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
<label for="price">Enter original price ($):</label>
|
| 18 |
<input type="number" id="price" placeholder="e.g. 100.00" />
|
| 19 |
|
|
|
|
| 9 |
<body>
|
| 10 |
<div class="container">
|
| 11 |
<h1>Sales Tax Calculator</h1>
|
| 12 |
+
|
| 13 |
<label for="state">Select your state:</label>
|
| 14 |
<select id="state">
|
| 15 |
<option value="">--Choose a state--</option>
|
| 16 |
</select>
|
| 17 |
|
| 18 |
+
<label for="itemType">Select item type:</label>
|
| 19 |
+
<select id="itemType">
|
| 20 |
+
<option value="">--Choose an item type--</option>
|
| 21 |
+
<option value="general">General Merchandise</option>
|
| 22 |
+
<option value="grocery">Groceries</option>
|
| 23 |
+
<option value="clothing">Clothing</option>
|
| 24 |
+
<option value="prescription">Prescription Drugs</option>
|
| 25 |
+
</select>
|
| 26 |
+
|
| 27 |
<label for="price">Enter original price ($):</label>
|
| 28 |
<input type="number" id="price" placeholder="e.g. 100.00" />
|
| 29 |
|