This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by emilyclaffy
about 10 years

Oops, try again. Make sure you put some text between your <a></a> tags!

What did I do wrong?

My HTML:

Answer 53239a3c52f863c46800bdab

1 vote

Permalink

I think that the problem is that you didn’t actually make any links. While you do have text, you don’t have any tags to turn them into links. Your CSS is fine but make sure you do something like:

<a href="google.com" target="_blank">Nasty Gal</a> 

to all three of your “Nasty Gal” ‘s.

points
Submitted by Aaron
about 10 years

1 comments

itguy2b almost 10 years

Aaron, this helped me on the error I was getting. I wasn’t using target="_blank">my link</a> The examples were showing a< href="example.com>my link</a>

Thanks for taking the time for post an answer.

Answer 532b6aac631fe90313001345

0 votes

Permalink

Hey Aaron,

Thanks for the feedback. I figured it out. I needed to remove the last “/“ from my “Nasty Gal urls.

Thanks again!

points
Submitted by emilyclaffy
about 10 years

Answer 5387927d8c1ccc73fd00099a

0 votes

Permalink

I am having the same Problem.

here is the HTML

<a href="https://www.answersingenesis.org"Answers In Genesis</a>
<a href="http://www.google.ca"Google</a>
<a href="http://www.facebook.com"Facebook</a>

and the CSS Looks like this

a:link {
text-decoration: none; color: #008b45;
}

a:hover {
color: #00ff00
}

a:visited {
    color: #ee9a00;

}
points
almost 10 years