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 trialMessan Teko-Agbo
740 PointsReplace the ampersand and the copyright symbol with an html character entity
What am i doing wrong?
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design < Development</h3>
<p>Contact me at <a href="mailto:messan@hotmail.com">this email</a>.</p>
<p>> 2017</p>
</body>
</html>
5 Answers
Mike Siwik
Front End Web Development Techdegree Student 14,814 PointsOn line 7, this
<h3>Design & Development</h3>
Is changed to
<h3>Design & Development</h3>
Line 9
<p>Ā© 2017</p>
Is changed to
<p>© 2017</p>
Jennifer Nordell
Treehouse TeacherHi there! I received your request for assistance. You are replacing the ampersand with a the html entity for a <
. The lt
stands for "less than". And you are replacing the copyright symbol with the html entity for the >
. The gt
stands for greater than. The symbols should be replaced with their corresponding HTML entities.
You can find a list of the entities and their corresponding symbols in this documentation.
Hope this helps!
Godfrey M
Courses Plus Student 2,696 Points<!DOCTYPE html> <html lang="eng"> <head> <meta charset="utf-8"> <title>My Page</title> </head> <body> <h3>Design & Development</h3> <p>Contact me at <a href="mailto:messan@hotmail.com">this email</a>.</p> <p>Ā© 2017</p> </body> </html>
with this code you should be able to pass this test
Godfrey M
Courses Plus Student 2,696 Pointssorry but simple trick is place "&" between design and development , then place " Ā©" before 2017. don't forget the semicolons please its important!! and that's it thanks
HIDAYATULLAH ARGHANDABI
21,058 Pointsthe correct answer is
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:coolvrexperience@gmail.com?subject=Hi There!">Arybrown@me.com</a>.</p>
<p>copyright © 2017</p>
</body>
</html>