InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code required to display the following in a web page(use list tags).ListBox A ListBox control displays a list of items from which a user can select one or more items ComboBoxA ComboBox control combines the features of a textbox and a ListBox.FrameA frame provides grouping for controls |
|
Answer» <html> <head> <title> Definition list </title> </head> <body> <dI> <dt>ListBox <dd>A ListBox control displays a list of item <dt>ComboBox <dd>A ComboBox control combines the fea <dt>Frame <dd>A frame provides grouping for controls </dI> </body> </html> |
|