Site hosted by Angelfire.com: Build your free website today!

Machine Exercise 3

1. What is the purpose of using frames in this activity?
Through the use of form, we have been able to let the user input data using different input types that can be applied in online exams and registrations.
2. What is the procedure of creating frames on a Web page?
There are different kinds of form for us to be able to input data. The types are radio, check boxes, text etc. The "radio" is a type of input that out of multiple choices you can only choose one. This application can be used on multiple choice exams. To create a radio input we must type first <form> then under it <input type="radio" name="gender" value="male">Lalake. This will show a radio button and beside it a label Lalake. If the user choose the radio button labeled Lalake the radio button will submit an input Male that is in the value of the tag. In the checkbox <input type="checkbox" name="hobby" value="basketball"> basketbol this will display a box and a label basketbol beside it. The checkbox innput is like a radio input, the difference is that if there are several radio buttons, you can only choose one while in checkboxes, you can choose more than one choice. Next is the text input <input type="text" name="family"> this will display a textbox for the user to input text directly from the keyboard. This are some types of input forms.