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 trialDwayne Pinney
Front End Web Development Techdegree Student 3,197 PointsReplace the ampersand and copyright symbol with HTML character entity.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:example@hotmail.com">
<p>© 2018</p>
</body>
</html>
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsYou have all the correct entities, but you deleted part of the pre-loaded HTML, and the challenge doesn't like that.
You'll need to restart the challenge. This time only add the mailto:example@mail.com
inside the quotation marks, and do not delete or alter anything else on that line. This will pass task 1.
Then just redo the entities that you have and task 2 will pass.
Note to remember: Instructions for tasks are very specific and always need to be followed exactly. Unless explicitly instructed to do so, never alter or delete any of the pre-loaded snippets. This will almost always cause the challenge to fail, even if it works correctly locally.
Nice work! :)
Dwayne Pinney
Front End Web Development Techdegree Student 3,197 PointsThank you
Jason Anders
Treehouse Moderator 145,860 PointsJason Anders
Treehouse Moderator 145,860 PointsModerator note: I have removed your actual email. This is an open Community and posting your email could potentially expose you to some unwanted actions. It's a good practice to not post any personal information in the Community.