InterviewSolution
Saved Bookmarks
| 1. |
What is the use of ? |
|
Answer» The <fieldset> tag in HTML5 is used to GROUP together related FORM elements. A <fieldset> must begin with a <legend> tag because this tag will define the TITLE of the fieldset. By using <fieldset> tag and <legend> tag together, DESIGNERS can make their FORMS easier to understand and use. The syntax for <fieldset> tag is: <fieldset>Controls</fieldset> |
|