💻 HTML 17.
Q: Which tag is used to create a
🏷️ Basic Concepts
1. Q: What does HTML stand for?
hyperlink?
A: <a> tag.
18.Q: Which attribute of <img> specifies the
A: HyperText Markup Language. image source?
2. Q: Who developed HTML? A: src.
A: Tim Berners-Lee. 19.Q: Which attribute of <a> specifies the
3. Q: What is the purpose of HTML? destination page?
A: To structure and display content on A: href.
webpages. 20.Q: Which attribute of <img> gives
4. Q: What is a tag in HTML? alternate text?
A: A keyword enclosed in angle brackets A: alt.
5.
used to define elements.
Q: What is an element in HTML? 📊 Tables, Lists, and Forms
A: It consists of a start tag, content, and an 21.Q: Which tag is used to create a table?
end tag. A: <table>.
📄 Structure & Layout 22.Q: Which tag defines a table row?
A: <tr>.
6. Q: Which tag defines the root of an 23.Q: Which tag defines a table header?
HTML document? A: <th>
A: <html> tag. 24.Q: Which tag defines a table cell?
7. Q: Which tag contains the title of the A: <td>.
webpage? 25.Q: Which tag defines a list item?
A: <title> tag. A: <li>.
8. Q: Which tag defines the visible part of a 26.Q: Which tag is used for an ordered list?
webpage? A: <ol>.
A: <body> tag. 27.Q: Which tag is used for an unordered
9. Q: What is the use of the <head> tag? list?
A: To contain meta information, title, and A: <ul>.
links. 28.Q: Which tag is used to create a form?
10.Q: How do you create a line break? A: <form>.
A: Using <br> tag. 29.Q: Which tag is used for single-line text
🔤 Text Formatting
input?
A: <input type="text">.
30.Q: Which tag is used for multi-line text
11.Q: Which tag makes text bold? input?
A: <b> A: <textarea>.
12.Q: Which tag makes text italic? 31.Q: Which tag is used for dropdown lists?
A: <i> A: <select> and <option>.
13.Q: Which tag underlines text?
A: <u>.
🧱 Miscellaneous
31.Q: What is the use of <marquee> tag?
14.Q: Which tag is used to display large A: To scroll text or images across the
heading text? screen.
A: <h1> to <h6> tags. 32.Q: Which tag is used to comment in
15.Q: Which tag is used to create a HTML?
horizontal line? A: <!-- comment -->.
A: <hr>. 33.Q: Are HTML tags case-sensitive?
A: No, HTML tags are not case-sensitive.
🧭 Links and Media 34.Q: What is the latest version of HTML?
A: HTML5.
16.Q: Which tag is used to insert an image? 35.Q: Which tag is used to embed a video in
A: <img>. HTML5?
A: <video>.