HTML Basics Worksheet
Answer the following questions by adding your answer to the DIV element below each question.
Question 1
What is the significance of the html element in an html document?
The html element contains all the other elements in the document.
It is known as the root element.
Question 2
What is the purpose of the head element in an html document?
The head element in an HTML document contains metadata, links to external resources, and sets the page title.
Question 3
What is the purpose of the title element in an html document?
The title element sets the web page's title displayed in the browser's title bar or tab and aids in search engine optimization (SEO).
Question 4
What is the purpose of the body element in an html document?
The element in an HTML document contains all the content that is displayed on the web page, such as text, images, videos, and other multimedia. It represents the main content that users interact with.
Question 5
What is the difference between an inline element and a block element?
Block elements start on a new line and take up full width, while inline elements do not start on a new line and only take up necessary width.
Question 6
What is a self-closing tag?
A self-closing tag in HTML is a tag that does not need a closing tag because it does not enclose any content.
Question 7
Explain the syntax for adding an attribute to an HTML element?
Content This syntax ensures the attribute and its value are correctly applied to the HTML element.
Question 8
Add an H3 element that contains the content 'Hello World!'.
Then add a class attribute to the H3 element and set the value of the attribute to "glow".
Hello World!