A paragraph element is _____.
What is an element of code used to separate sentences into paragraphs?
A language used to create web pages.
What is HTML?
What is head?
Tag which defines the main content of the HTML document.
What is body?
This is used to start a paragraph
What is <p>?
What HTML is an acronym for.
What is Hypertext Markup Language?
Data about the HTML document.
What is metadata?
The amount of body elements in an HTML document.
What is 1?
This is used to end a paragraph
What is </p>?
A piece of a website marked by a start tag and often closed with an end tag.
What is an HTML element?
Examples of metadata.
Where the body tag should be placed.
What is under the closing head tag?
What is <p/>?
The special set of characters indicating the start and end of an HTML element and its type.
Where the head tag is placed.
What is before the HTML tags, and after the body tags?
What shouldn't be written after the closing body tag.
What is content?
<p>This code is missing a ___<p>
What is /?
Why does the code recognize what it's supposed to do?
The error in this line of code.
<html>
<head>
</body>
</head>
<html>
What is the </head> tag placed after the body tag?
Where all content in an HTML document should go.
What is inside the body tag?