InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code to display the following list: Form Text Box Label Command Button |
|
Answer» <html> <head> <title> list </tittle> </head> <body bgcolor="vbcyan"> <ul type="circle"> <li>Form <li>TextBox <li>Label <li>commandButton</ul> </body> </html> |
|