Footer element - selector

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.

remember that with the dot in front it is a class selector, an element selector doesn’t have the dot

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.