HTML Quiz with Explanations HTML Quiz 1. What does HTML stand for? Hyper Transfer Markup Language Hyper Text Markup Language Hyper Tool Multi Language Home Tool Markup Language Explanation: HTML stands for Hyper Text Markup Language. It's the standard markup language for creating web pages and web applications. The "Hyper Text" part refers to links between web pages. 2. Which tag is used to define an unordered list in HTML? <ol> <li> <ul> <list> Explanation: The <ul> tag is used to create unordered (bulleted) lists. <ol> is for ordered (numbered) lists, and <li> is used for list items within both types of lists.
Comments
Post a Comment