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 trial

HTML HTML Basics Going Further with HTML Email Links and Entities Challenge

Replace the ampersand and copyright symbol with HTML character entity.

index.html
<!DOCTYPE html> 
<html>
  <head>
    <title>My Page</title>
  </head>
  <body>
    <h3>Design &amp; Development</h3>
    <p>Contact me at <a href="mailto:example@hotmail.com"> 
      <p>&copy; 2018</p>  
  </body>
</html>
Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

Moderator 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.

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi Dwayne Pinney

You 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! :) :dizzy:

Thank you