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 trialLuke Kennedy
11,661 PointsI do not get the question. Isnt the answer supposed to be "©" for this coding challenge.
The question asked to replace the ampersand and copyright with html entity.
I thought we are to just change the "©" that would be right? please do correct me, I am not sure what the mistake.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:hello@gmail.com">hello@gmail.com</a></p>
<p>© 2017 </p>
</body>
</html>
1 Answer
Luke Kennedy
11,661 PointsLOL. Nvm I see other students had the same problem had the answer. Should have googled the answer in the first place.
The answer is <p>&© 2017</p>