Let's solve the worksheet step by step and provide explanations for each answer.
---
Question 1: Fill in the blanks
a. The full form of HTML is
👉
HyperText Markup Language
✔ *Explanation:* HTML stands for HyperText Markup Language, which is the standard language used to create web pages.
---
b. The ____________ can be defined in an HTML document using `<p>` tag.
👉
Paragraph
✔ *Explanation:* The `<p>` tag is used to define a paragraph in an HTML document. It is one of the most commonly used tags for text content.
---
c. There are _________ types of tags in an HTML.
👉
Two
✔ *Explanation:* In HTML, there are two main types of tags:
-
Empty (self-closing) tags: These do not have closing tags, e.g., `<br>`, `<img>`.
-
Paired (container) tags: These have both opening and closing tags, e.g., `<p>...</p>`, `<h1>...</h1>`.
So, the correct answer is
two types.
---
d. `<br>` tag is used to _______ the line.
👉
Break
✔ *Explanation:* The `<br>` tag is a self-closing tag used to insert a line break, meaning it forces the text to start on a new line without creating a new paragraph.
---
e. `<b>` tag is used to mark the text as ____________.
👉
Bold
✔ *Explanation:* The `<b>` tag is used to display text in bold font. It is a semantic tag that emphasizes the importance of text visually.
---
Question 2: True or False
a. The `<sub>` tag is used to mark the text as italic.
👉
False
✔ *Explanation:* The `<sub>` tag is used to display text in subscript (lowered and smaller), like in chemical formulas (e.g., H₂O). For italics, we use `<i>` or `<em>`.
---
b. The `<H6>` is the smallest heading tag in an HTML.
👉
True
✔ *Explanation:* HTML has six levels of headings: `<h1>` to `<h6>`. `<h1>` is the largest (most important), and `<h6>` is the smallest.
---
c. The `<head>` tag is an empty tag.
👉
False
✔ *Explanation:* The `<head>` tag is
not an empty tag. It contains metadata about the webpage (like title, links to CSS, scripts, etc.), and it must have a closing `</head>` tag. It is a container tag.
---
d. The `<body>` tag contains the content to be displayed on Webpage.
👉
True
✔ *Explanation:* Yes, the `<body>` tag holds all the visible content of the webpage such as text, images, links, videos, etc.
---
e. There are only four types of heading tags available in HTML.
👉
False
✔ *Explanation:* There are
six heading tags in HTML: `<h1>`, `<h2>`, `<h3>`, `<h4>`, `<h5>`, and `<h6>`. So this statement is false.
---
✔ Final Answers:
####
Question 1
a. HyperText Markup Language
b. Paragraph
c. Two
d. Break
e. Bold
####
Question 2
a. False
b. True
c. False
d. True
e. False
---
Let me know if you'd like this formatted as a printable answer sheet!
Parent Tip: Review the logic above to help your child master the concept of html worksheet.