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 is the root element in a web page that holds everything.
Question 2

What is the significance of the head element in an html document?

The head elemnet holds the text on the tab and the meta data.
Question 3

What is the significance of the title element in an html document?

It is the text that is on the tab of the web bag.
Question 4

What is the significance of the body element in an html document?

The body element holds the elements of the web page and text.
Question 5

What is the difference between an inline element and a block-level element?

A element that is inline only takes the space it needs. A element that is block level takes up as much horizontal space as it can.
Question 6

What is a self-closing tag?

A self closing tag only has (<>) and does not have a closing tag like () examples are meta br or hr.
Question 7

In the DIV element below this paragraph, add an H3 header element and make it display the content 'Hello World!'

Hellow World!