How many <body> elements are in a HTML document?
Only one
Make sure you don't put any content in the (blank) tag
head
What is the <p> tag used for?
To define a paragraph
What is HTML?
It is the container for all of the HTML elements
All <html> documents must start with a ...
<!DOCTYPE> declaration
What elements should go in the <body> tag?
All the components of a HTML document including headings, images, and list
The <head> is placed inside the...
<html> tags and before the <body> tags
What can we do with the <p> tag?
To write several paragraphs or a paragraph or multiple lines
Where is the <html> placed?
Right under the <!DOCTYPE> tag
What does this tag tell the browser?
What version the HTML page is written in
Where should the <body> tag be placed?
Under the closing </head> tag
What are the syntax?
<head> and </head>
What is an example of the <tag> being used?
<p> My favorite animals are birds. </p>
The <html tag requires a ...
Starting and ending tag
What line does the <!DOCTYPE> go in?
The very first line of a document
What can we use <body> for?
To create a simple webpage
What can we use <head> for?
To contain metadata about the HTML document
What is the syntax?
<p> </p>
What does the <html> makeup?
Contains everything that makes up the webpage
The <!DOCTYPE> needs a closing tab.
True or False?
False
What is an example in the way this code can be used?
<html>
<head>
<title> Title Of The Document </title>
</head>
What specifically is the <head> tag used for?
Document title, character sets, style sheets, links, and scripts
You can write multiple (blank) with this tag <p>
paragraphs
What is a example of this?
<!DOCTYPE html>
<html>
What is the syntax?
<!DOCTYPE>