What does the "p" in <p> stand for?
What is a paragraph?
Almost all of our content the user sees goes in which element?
What is body?
This is the file extension of a web page created in HTML programming. Hint: index._______
What is .html?
What type of file is the stylesheet?
What is .css?
Which HTML tag will create the largest heading?
What is <h1>?
What tag would you use to make a numbered list?
What is <ol>?
What are the links that go across the top of the page that allow you to click between pages called?
What is a navigation bar?
What character is used in CSS to contain property value pairs for selectors?
What are curly braces? {}
What does "li" in the <li> tag, stand for?
What is list item?
What should be the first line of your HTML files?
What is <!DOCTYPE html>?
What two tags do you use to create a bullet point list?
What is <ul> and <li>?
The stylesheet is linked inside the __________ element.
What is <head>?
Which character (punctuation) is used to indicate a closing tag?
What is / ?
What does HTML stand for?
What is Hyper Text Markup Language?
Name an HTML element that does not need a closing tag
What is <img>
How many style rules can you write per selector?
What is unlimited?
What does src stand for?
What is source?
What is the purpose of having alternative text for an image?
What is It provides a backup in case your image doesn't download properly or for visually impaired users?
What the final two lines of every html document be?
What are:
</body>
</html>
What punctuation mark separates property value pairs? (What does each line need to end in?)
What is a semi-colon? ;