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 trialJessica Green
Courses Plus Student 2,527 PointsThis is the question: "Set the "contact" link to begin composing an email in the user's default email program when click
I'm supposed to add a properly formatted email address to the "mailto" attribute. I added my email address, but it's saying that the answer is wrong. Please help!
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:">jessgreen629@gmail.com</a></p>
<p>Ā© 2017</p>
</body>
</html>
2 Answers
Dan Weru
47,649 PointsHey, you were doing great. Just tweak your code a little.
<p>Contact me at <a href="mailto:jessgreen629@gmail.com">jessgreen629@gmail.com</a></p
Jessica Green
Courses Plus Student 2,527 PointsGot it! Thank you for getting back to me so quickly, One Weru.
Dan Weru
47,649 PointsYou're most welcome. Happy coding!