Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialhaakon Guttormsen
2,157 Pointsampersand ©?
Hi there, I am doing a code challenge. The purpose of the challenge is to make a copyright ampersand. The code should look like this: © 2017 (I think). I don`t see why I am getting a bummer when I apply this?
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:haakon.knudsen94@gmail.com">this email</a>.</p>
<p>© 2017 </p>
</body>
</html>
2 Answers
Jennifer Nordell
Treehouse TeacherHi there! Actually, you're doing great! But you missed part of the instructions. Your copyright symbol is spot on. However, the challenge also asks you to change the &
(ampersand) sign in the <h3>
tag 2 lines above it.
I feel certain you can get it with this hint, but let me know if you're still stuck!
Jason Anders
Treehouse Moderator 145,860 PointsHi Haakon,
You've only got half the instructions for the task complete, which is why it's not passing. You have the copyright entity correct, but the instruction also want you to replace the ampersand in the <h3>Design & Development</h3>
to an HTML entity.
Other than that... Good job. :)