What does <p> stand for?
Paragraph
Where is the bug?
<h1>Rana's Recipe Resource</h1>
<h2>All Recipes<h2>
No closing tag on h2.
What's the <h1> tag for?
To enter in a heading/title.
What does "HTML" stand for?
Hyper-Text Markup Language
Where is the bug?
<p>Spring officially starts <strong>March 20th</stong>.</p>
The second "strong" is mis-spelled.
What's the <img> tag for?
To insert an image
What does <br> stand for?
Break
Surprise question! Name one self-closing tag.
<br> or <img>.
What's the <br> tag for?
To break the paragraph
What does <ul> stand for?
Unordered list.
Where is the bug?
<img src="img/sleeping-cat" alt="Cat sleeping in the sun">
No domain suffix (.com, .jpg) in the image link.
What's the <li> tag for?
To enter in a list item
What does <em> stand for?
Emphasis
Where is the bug?
<a href="https://skillcrush.com/" target="blank">Skillcrush</a> An example
No underscore before the "blank"
What's the <a> tag for?
To enter in a website link