Basic HTML Tags Class 7 MCQs
Basic HTML Tags – MCQs with Answers & Explanations
Class: CBSE Class 7
Subject: Computer Science
Section: HTML and Web Designing
Topic: Basic HTML Tags
Board: CBSE (Based on NCERT Syllabus)
Subject: Computer Science
Section: HTML and Web Designing
Topic: Basic HTML Tags
Board: CBSE (Based on NCERT Syllabus)
Q1. What does HTML stand for?
Answer: A
Explanation: HTML is the standard language used to create web pages. It structures content using tags.
Explanation: HTML is the standard language used to create web pages. It structures content using tags.
Q2. Which tag creates the largest heading?
Answer: B
Explanation: Heading tags range from h1 (largest) to h6 (smallest).
Explanation: Heading tags range from h1 (largest) to h6 (smallest).
Q3. Which tag is used to create a paragraph?
Answer: B
Explanation: The <p> tag defines a paragraph and adds spacing automatically.
Explanation: The <p> tag defines a paragraph and adds spacing automatically.
Q4. Which tag is used to insert a line break?
Answer: A
Explanation: <br> inserts a single line break without starting a new paragraph.
Explanation: <br> inserts a single line break without starting a new paragraph.
Q5. Which tag displays the page title on browser tab?
Answer: B
Explanation: The <title> tag defines the title shown on the browser tab.
Explanation: The <title> tag defines the title shown on the browser tab.
Q6. Which tag contains webpage content?
Answer: A
Explanation: All visible content is placed inside the <body> tag.
Explanation: All visible content is placed inside the <body> tag.
Q7. HTML tags are enclosed within?
Answer: C
Explanation: Tags use angle brackets.
Explanation: Tags use angle brackets.
Q8. Which tag makes text bold?
Answer: B
Explanation: <b> displays text in bold.
Explanation: <b> displays text in bold.
Q9. Which tag italicizes text?
Answer: A
Explanation: <i> renders text in italics.
Explanation: <i> renders text in italics.
Q10. Which tag underlines text?
Answer: A
Explanation: <u> underlines text.
Explanation: <u> underlines text.
Q11. Root tag of HTML page?
Answer: C
Explanation: Entire HTML document is enclosed in <html>.
Explanation: Entire HTML document is enclosed in <html>.
Q12. Tag for inserting image?
Answer: A
Explanation: <img> embeds images using src attribute.
Explanation: <img> embeds images using src attribute.
Q13. Tag for hyperlink?
Answer: B
Explanation: Anchor tag creates links.
Explanation: Anchor tag creates links.
Q14. Attribute used in links?
Answer: B
Explanation: href stores destination URL.
Explanation: href stores destination URL.
Q15. Tag for ordered list?
Answer: B
Explanation: Ordered lists show numbered items.
Explanation: Ordered lists show numbered items.
Q16. Tag for unordered list?
Answer: A
Explanation: Unordered lists show bullets.
Explanation: Unordered lists show bullets.
Q17. List item tag?
Answer: B
Explanation: <li> defines each list entry.
Explanation: <li> defines each list entry.
Q18. Tag for horizontal line?
Answer: A
Explanation: <hr> inserts thematic break.
Explanation: <hr> inserts thematic break.
Q19. Tag for table row?
Answer: B
Explanation: <tr> defines table row.
Explanation: <tr> defines table row.
Q20. Tag for table data cell?
Answer: A
Explanation: <td> stores table data.
Explanation: <td> stores table data.
