11CA 12 HTML - Adding Multimedia Elements and Forms v2
11CA 12 HTML - Adding Multimedia Elements and Forms v2
Part – II
11 CS / Chapter 12 / Page 1 of 3
is used to adjust volume control. The loop attribute defines the duration of play. The
„infinite‟ value causes the audio play as long as the page is in view.
General Format: <bgsound src=music file name with location>
5) Which tag is used to specify the list of items in dropdown list box?
<select>Tag is used for dropdown list box.
<option> tag is used to list the items
It provides a list of various options as dropdown list
Part-III
Short Answers
11 CS / Chapter 12 / Page 2 of 3
post :The post method will send the names and values of the form elements as packets.
Action
The action attribute identifies the server side program or script that will process the form.
The action will be the name of a Common Gateway Interface (CGI) program written in
programming languages like Perl, JavaScript, PHP or Active Server Pages (ASP).
Text : Create a Text Box. The element used to get all kind of text input such as name, address
etc.,
Password : Similar as Text box. But, while entering data, the characters are appearing as coded
symbols such as asterisk.
Checkbox : Check box is an element appearing like a small square box. When the user click on
the square a tiny tick mark will appear inside the square. This element is used to select multiple
options.
Radio Button : Radio button is used to select any one of the multiple options from the list. This
element looks like a small circle, when the user select an item, a tiny dot will appear within the
circle. If the user selects another option, previously selected option will be deselected. This
means, user can select any one of the given option form a group
Reset : It is a special command button used to clear all the entries made in the form.
Submit : It is also a special command button used to submit all the entries made in the form to
the backend server.
Button : This is a standard graphical button on the form used to call functions on click.
Name – Provide the name to the control, which is sent to the server.
11 CS / Chapter 12 / Page 3 of 3