Assign # 10 Ch. 14 Human-Computer Interaction Web based form Stefan Lano needs d
ID: 3829427 • Letter: A
Question
Assign # 10 Ch. 14 Human-Computer Interaction
Web based form
Stefan Lano needs displays that will show the musical instrument inventory in his chain of music stores that caters to musicians playing in world-class symphony orchestras in Basel, Switzerland; Buenos Aires, Argentina; Philadelphia; and New York. Design a web based form-fill interface for the inventory control (can be used to enter a new inventory item, change an existing item or just query on an item – one screen) of musical instruments in all four stores that could be used on a PC display screen. Assume that English will be the interface language.
Note: A Web-based form would be better suited than a simple form-fill interface because the company is selling instruments from many locations, and the Internet would be well suited for the task. It also provides a means for handling international sales and having representatives update the data globally. A third benefit of using the Web is increased accuracy by using drop-down lists whenever possible..
Include the following buttons on the bottomof the form:
-Submit, Reset, Back, Help
Include the following fields:
-Instrument Code (drop down), Classification (drop down), Country (drop down), City (drop down)
- Store Name
-Instrument Name
-Manufacturer
-Purchase Date (drop down fo Month, Day, Year)
-Serial Number
-On Hand
-Unit Price
Explanation / Answer
Here goes the web based interface coded with basic HTML
Code:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div>
Instrument Code:
<select>
<option>option1</option>
<option>option2</option>
<option>option3</option>
<option>option4</option>
<option>option5</option>
<option>option6</option>
</select>
<br>
Classification:
<select>
<option>option1</option>
<option>option2</option>
<option>option3</option>
<option>option4</option>
<option>option5</option>
<option>option6</option>
</select>
<br>
Country:
<select>
<option>option1</option>
<option>option2</option>
<option>option3</option>
<option>option4</option>
<option>option5</option>
<option>option6</option>
</select>
<br>
City:
<select>
<option>option1</option>
<option>option2</option>
<option>option3</option>
<option>option4</option>
<option>option5</option>
<option>option6</option>
</select>
<br>
Store name: <input type="text" name="">
<br>
Instrument Name:
<input type="text" name="">
<br>
Manufacturer:
<input type="text" name="">
<br>
Purchase Date:
<select>
<option> 1 </option>
<option> 2 </option>
<option> 3 </option>
<option> 4 </option>
<option> 5 </option>
<option> 6 </option>
<option> 7 </option>
<option> 8 </option>
<option> 9 </option>
<option> 10 </option>
<option> 11 </option>
<option> 12 </option>
<option> 13 </option>
<option> 14 </option>
<option> 15 </option>
<option> 16 </option>
<option> 17 </option>
<option> 18 </option>
<option> 19 </option>
<option> 20 </option>
<option> 21 </option>
<option> 22 </option>
<option> 23 </option>
<option> 24 </option>
<option> 25 </option>
<option> 26 </option>
<option> 27 </option>
<option> 28 </option>
<option> 29 </option>
<option> 30 </option>
<option> 31 </option>
</select>
<select>
<option>jan</option>
<option>feb</option>
<option>mar</option>
<option>apr</option>
<option>jun</option>
<option>jul</option>
<option>aug</option>
<option>sep</option>
<option>oct</option>
<option>nov</option>
<option>dec</option>
</select>
<select>
<option>1990</option>
<option>1991</option>
<option>1992</option>
<option>1993</option>
<option>1994</option>
<option>1995</option>
<option>1996</option>
</select>
<br>
Serial Number:
<input type="text" name="">
<br>
On hand
<input type="text" name="">
<br>
Unit Price
<input type="text" name="">
</div>
<div>
<button>Submit</button>
<button>Reset</button>
<button>Back</button>
<button>Help</button>
</div>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.