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

Arvind Kevin Arjun Sharma
Arvind Kevin Arjun Sharma
8,272 Points

Please some people answer me this annoying coding challenge, i really don't know what to do here.

Set the "contact" link to begin composing an email in the user's default email program when clicked.

index.html
<!DOCTYPE html> 
<html>
  <head>
    <title>My Page</title>
  </head>
  <body>
    <h3>Design & Development</h3>
    <p>Contact me at <a href="">this email</a>.</p>
    <p>Ā© 2017</p>
  </body>
</html>
Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

I don't see any of your code added above. Please provide the code you are trying so other may be able to help you. Without seeing what you are trying, it is very hard to help you pinpoint the errors. The Community is a place to come for assistance, not to just be given the answers... this wouldn't lead to much learning.

Also, going back and reviewing the videos right before the challenge is very helpful when you are stuck. Knowing what to watch for specifically will often help find the solution you need.

Jason ~Treehouse Moderator

Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

I have also gone back through and deleted the duplicate threads you created for this subject. Please try and refrain from posting multiple threads on the same subject. As I've already suggested, going back and reviewing the videos is a great way to find answers you are looking for and an is excellent learning tool.

Thank you

2 Answers

You'll need to use a mailto: within your href. Like this...

<a href="mailto:name@domain.com">Email us</a>