Moving down to the footer
element, make all the text have a value of 14px
for the font size.
HTML
<footer class="footer">
<p>
<a href="https://www.freecodecamp.org" target="_blank">
Visit our website</a>
</p>
<p>123 Free Code Camp Drive</p>
</footer>
CSS
.footer {
font-size: 14px;
}
ERROR:
You should have a footer
selector.