Test 7 which says to add the <a> tag and with a corresponding which links to an outside site. I have completed it and it's working but its not checking off

*Tell us what’s happening:
Hi guys, I have been stuck here and I really don’t know what I am doing wrong .
I need help.
This is the link to my project on codepen.
https://codepen.io/kambajuliet/pen/MWjKbvP

Your code so far
html/css

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36.

Challenge: Build a Tribute Page

Link to the challenge:

Hi there,
I saw your project. there are a few issues:
First of all, you need margin and padding for the overall page. you reset the default values but now you need to adjust margin and padding. you can do this with

 margin: 30px 8px;
  padding: 15px;

for the main section. Assign this to the outer div or main.
2. You need text-align and line height for all the parts these are universal CSS values. So put them in the body

line-height: 1.5;
  text-align: center;

You also need to change the font family and font size, plus make the tribute page responsive. use media queries for that.
@kambajuliet10 hope this helps

1 Like

Hi @kambajuliet10. I have edited your post. It is better to choose an appropriate title which describes the challenge you are facing and add a link to your project like I did above.

EDIT
The target attribute of your a tag at the bottom should have a value of "_blank" not "-blank"

OMG , thank you so much I can’t believe I made that mistake.