What does the "p" in <p> stand for?
Paragraph
All of the content the user sees goes in which section?
body
What are the 2 main sections of an HTML webpage
head and body
Which symbol is used to indicate an end tag?
/
To italicize a word or phrase, what tag do you use?
<i></i>
Which HTML tag will create the largest heading?
<h1>
Your browser will assume your paragraph is all _____ ______, regardless of how long it is.
one line
How many different headings are there?
6 headings
What would you type in the underlined area of the code below?
<a href="_______________">View the Trailer</a>
The URL or web address
To divide a page using a horizontal line, what tag should you use?
<hr>
What should be the first line of your webpage?
<!DOCTYPE html>
What tag or code would be found at the end of the webpage?
</html>
Name one HTML tags that do not need closing tags
<br> or <hr>
What tag tells the web browser how to interpret the code?
<!DOCTYPE html>
Creates a line break on the webpage
<br> tag
If we want to bold a word or two, we use _____ tag
<strong></strong> OR <b></b>
What is the smallest heading size?
<h6>
The title tag (<title>) would go inside the __________.
<head>
What does HTML stand for?
Hyper Text Markup Language
what tag indicates the start and end of the document (webpage)
<html></html>