Link to External Pages with Anchor Elements (help)

I have written this code and keep get error. Please what’s missing in the code.

<a “href=http://freecatphotoapp.com”>Cat photos

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements

hi @JOSH-360
your Anchor tag should be like this

<a href='http://freecatphotoapp.com'>Cat photos</a>
  1. Your missing the closing anchor tag
</a>
  1. The href attribut shoold be like :
href='your-link-here' 

HAPPY CODING :slight_smile:

1 Like