What does the "p" in <p> stand for?
Paragraph
Almost all of our content the user sees goes in which element?
body
We split the html file into two parts
What does HTML stand for?
Hyper Text Markup Language
The end of the HTML document
</html>
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
Data that describes the content of a website.
Metadata
What tag is used to italicize words?
What is <em></em>
Name one HTML tags that do not need closing tags
<br>
What should be the first line of your HTML files?
<!DOCTYPE html>
I use this html tag to make text bold?
<strong></strong>
How many different headings are there?
6 headings
Most of your text will fall under the _______ setting
paragraph
Creates a line break on the resulting page
<br> tag
If we want to bold a word or two, we use _____ tag
<strong></strong>
What is the smallest heading size?
<h6>
The title tag is kept inside the __________.
<head>
where do the strong tags go?
nested tags are ?
tags that fit within tags
To divide a page, what tag should you use?
<hr>
To italicize a word or phrase, what tag do you use?
<em></em>
We need to tell the browser where the HTML code begins and ends
<html></html>
Which character is used to indicate an end tag?
/
This is the file extension of a web page created in HTML programming. Hint: index._______
What is .html / .htm?