What does HTML stand for?
What is Hypertext Markup Language?
What is <!DOCTYPE html>?
What is the tag for a paragraph?
What is <p>?
What do we use to identify a closing tag?
What is a forward slash (/)?
What is the tag used for an image?
What is <img>?
Which HTML version are we on?
What is HTML5?
Everything visible on a webpage goes in which element/tag?
What is <body>?
How many heading levels are there AND what is the largest?
What is 6, h1?
What is <>?
What is the tag for a line break?
What is br?
What is Javascript?
Where is the title shown to a viewer of a webpage?
What is in the browser tab?
What is data?
What is the last line of your HTML document?
What is </html>?
How do we link an external stylesheet?
What is <link rel="stylesheet" type="text/css" href="styles.css">?
What are div/span tags used for?
To style sections/phrases.
Name two things that go in your head section
What is title, meta tags, links to stylesheets, scripts, internal CSS?
Comments can be used to...?
What is explain something? What is as a placeholder?
What is the tag used for a hyperlink?
What are values surrounded by (HTML)?
What is ""?
What is utf-8?
How would I code a comment in HTML?
<!--This is a comment -->
How would I code this list?
1. Elementary School
2. Middle School
3. High School
<h1>Schools </h1>
<ol>
<li>Elementary School</li>
<li>Middle School</li>
<li>High School</li>
</ol>
Name a void element
What is br, hr, img, link?
What are attributes followed by?
What is "="?