What is the difference between an opening and closing tag?
Ex: <h1> </h1>
What does the title tag affect?
It's your lucky day! you hit the jackpot.
What element is useful for "breaking" or creating a new line for text.
What is the tag that represents a paragraph?
What does the style tag look like?
<style>
</style>
What does CSS stand for?
Cascading Style Sheets!
What is the tag that is used to link in a website?
<a> a.k.a. the anchor tag!
How would you change the color of your text with style?
<p style="color: red;">
</p>
What does HTML stand for?
Hypertext Markup Language!
How many variations of the heading tag are there?
6!
h1 to h6
How do you change the background of the screen using style?
<body style="background-color: blue;">
</body>