How you start a body
What is <body>?
How to start a paragraph
What is <p>?
How to start an HTML
What is <html>?
How to start a head
What is <head>
How to start doctype
What is <!DOCTYPE>
How you end a body
What is </body>?
How to end a paragraph
What is </p>?
How to end an HTML
</html>
What should you not do with a head
What is put anything in it
Where to place <!DOCTYPE> tag
What is at the VERY beginning
A body is
What is the main piece of a webpage?
What a paragraph does
What is starts a new line of text?
Where should you place an opening HTML tag
What is right after <!DOCTYPE>?
Head is used for
What is to contain metadata about the document
How to close <!DOCTYPE>
What is<!DOCTYPE> doesn't need a closer
There are this many <body> elements in an html document
What is one?
Paragraph's category
What is HTML tags?
Where should you place an ending HTML tag?
The very end
How to end a head
</head>
What <!DOCTYPE> does
What is tells browser what version of HTML the page is in
This is where the contents of a document go in relation to the <body>
What is inside?
Amount of paragraph tags you can use
What is as many as you want?
What does an HTML tag do
What is starts and ends a webpage?
Where to put <head> tag
What is inside <html> and before <body> tag
What documents start with <!DOCTYPE>
What is all documents