I am creating this post because I can’t pass the test for step # 14.
Step 14
After the three p elements within your .text element, create a blockquote element. Within that, add an hr element, a p element with the class set to quote, and a second hr element.
Give the .quote element the text **The entire curriculum should be a series of projects.**
The HINT is as follows: Your new p element should have the text The entire curriculum should be a series of projects.
I have looked over my code several times and can not seem to find an error.
I am hoping fresh eyes will find my mistake.
Here is my html:
<blockquote>
<hr>
<p class="quote">The entire curriculum should be a series of projects.</p>
<hr>
</blockquote>
Any help would be appreciated.