Here is the completed
HTML Basics Worksheet with explanations for each answer:
---
What is the body tag?
-
The top _________ uses the `<h1>` tag.
✔ Answer: *heading*
🔍
Explanation: The `<h1>` tag is used for the main heading of a webpage, which is typically the most important heading.
-
The `<h1>` tag has a(n) ________ tag.
✔ Answer: *closing*
🔍
Explanation: HTML tags like `<h1>` are paired with a closing tag `</h1>`. This ensures proper structure and tells the browser where the heading ends.
-
The number after the h in heading tags signifies _________.
✔ Answer: *the level or importance of the heading*
🔍
Explanation: Heading tags range from `<h1>` to `<h6>`, with `<h1>` being the highest (most important) and `<h6>` the least. It represents a hierarchical structure.
-
To make a paragraph you use the `<p> ... </p>` tag.
✔ Answer: *(This is already complete – no blank to fill)*
🔍
Explanation: The `<p>` tag defines a paragraph. Content between the opening and closing tags appears as a block of text.
-
Browsers ignore ________ and ________ when reading HTML.
✔ Answer: *whitespace* and *line breaks*
🔍
Explanation: Browsers collapse multiple spaces, tabs, and line breaks into a single space. This means extra formatting in code doesn't affect how content displays.
-
White space can be in the form of spaces and tabs.
✔ Answer: *(Already complete – just informational)*
-
The `<br>` tag stands for ________ and does not have a(n) ________ tag.
✔ Answer: *break* and *closing*
🔍
Explanation: `<br>` is a self-closing (or void) tag that inserts a line break. It does not need a closing tag because it doesn’t wrap content.
---
Where do HTML tags go?
-
The content of an `<h1>` tag goes between the ________ ___ and the ________ ___.
✔ Answer: *opening tag* and *closing tag*
🔍
Explanation: All HTML elements have an opening tag (`<h1>`) and a closing tag (`</h1>`), and content is placed in between them.
-
All visible content of a webpage must go inside the _________ tag.
✔ Answer: *body*
🔍
Explanation: The `<body>` tag contains all the visible content on a webpage, such as text, images, links, etc. Everything else (like metadata) goes in the `<head>`.
---
✔ Final Completed Worksheet:
####
What is the body tag?
- The top
heading uses the `<h1>` tag.
- The `<h1>` tag has a(n)
closing tag.
- The number after the h in heading tags signifies
the level or importance of the heading.
- To make a paragraph you use the `<p> ... </p>` tag.
- Browsers ignore
whitespace and
line breaks when reading HTML.
- White space can be in the form of spaces and tabs.
- The `<br>` tag stands for
break and does not have a(n)
closing tag.
####
Where do HTML tags go?
- The content of an `<h1>` tag goes between the
opening tag and the
closing tag.
- All visible content of a webpage must go inside the
body tag.
---
Let me know if you'd like this formatted as a printable PDF or need help with more HTML concepts!
Parent Tip: Review the logic above to help your child master the concept of html worksheet.