InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code to display the following list1. Form2. TextBox 3. Label 4. Command Button |
|
Answer» <html> <head> <title> list </title> </head> <body bgcolor="vbcyan"> <ul type="circle"> <li>Form <li>TextBox <li>Label <li> CommandButton </ul> </body> </html> |
|