HTML Basic Structure & Tags Worksheet
Part 1: Fill in the Blanks
Complete the sentences with the correct HTML tags.
1. The basic structure of an HTML document starts with the tag <_______> and ends with the
tag </_______>.
2. To create a new line in an HTML document, you can use the tag <_______>.
3. The tag <________> is used to insert a heading in HTML.
4. To create a paragraph of text in HTML, we use the tag <_______>.
Part 2: Multiple Choice Questions (MCQ)
Choose the correct answer for each question.
5. The title tag is placed inside which HTML tag?
a) <html>
b) <head>
c) <body>
d) <footer>
6. Which tag is used to make text bold in HTML?
a) <b>
b) <strong>
c) <bold>
d) Both a and b
Part 3: Spot the Error
Find and correct the errors.
7.
<html>
<head>
<title>My Webpage</title>
<head>
<body>
<h1>Welcome to my page<h1>
<p>This is a paragraph
<br>
<h6>This is a line </h6>
</body>
</html>