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 trialAbinet Kenore
10,082 PointsReplace the ampersand and copyright symbol with an HTML character entity.
I tried © © Even copyright Neither of them are working. So what is gonna be the answer?
<!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%20There!">this email</a>.</p>
<p>©2017</p>
</body>
</html>
HIDAYATULLAH ARGHANDABI
21,058 PointsAbinet make the and to & and copyright will be before 2017 that is © it will work
10 Answers
Reginald Levy
2,975 Pointsthe answer is and this one works: <p& © 2017</p> just place the additional greater sign I left it out so the computer wont translate the code
B G
1,866 PointsI don't understand why the > on the <p> has to be left out? I checked back in the video and it states nothing about that. Is there an answer to why this has to be done? If it's not covered, it should not be on a quiz..
Adam Hama
Courses Plus Student 3,455 Pointsthat one works just fine, thanks man.
Joshika Naidu
1,115 PointsThis works! Thank you!
Urvi Sharma
727 PointsAgree, i am not understanding this concept?
Though this code works, but i am not sure how it worked :(
Oszkár Fehér
Treehouse Project ReviewerHi All, It's missing the
;
from the end
&
©
Oszkár Fehér
Treehouse Project ReviewerCheck this site out, it's very useful [https://dev.w3.org/html5/html-author/charref]
HIDAYATULLAH ARGHANDABI
21,058 Pointscorrect answer
HIDAYATULLAH ARGHANDABI
21,058 Pointsthe correct code 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>
Mark Nemeth
9,322 Points<!DOCTYPE html>
<html> <head> <title>My Page</title> </head> <body> <h3>Design & Development</h3> <p>Contact me at <a href="mailto:ecalayag@gmail.com">this email</a>.</p> <p> ©2017</p> </body> </html>
HIDAYATULLAH ARGHANDABI
21,058 Pointstry my comment i have posted for this question it will help you
Jesse Price
Courses Plus Student 14,333 PointsI'm stuck with this as well. I've tried both entries from the Character Entity Reference Chart as well as '©' without the ' ' and still it won't pass it.
Yu-Chien Huang
Courses Plus Student 16,672 Pointsthe question is to replace the ampersand and copyright symbol, so the below is what u can do <p> & a m p ;& c o p y ; 2017</p>
MK K
1,258 PointsThank you!
Esther Robert
Courses Plus Student 2,331 PointsThe question is to replace with html character entity
Add<p> &© 2017</p>
HIDAYATULLAH ARGHANDABI
21,058 Pointsthis wont work please check my answer i posted recently
Dhavid Antunez
561 Points<p>& © 2017</p>
Selwyn Takunda Madya
2,700 PointsYeah, this one is one difficult challenge. I know the syntax but how to present as thier requiring us to do is one difficult entity
Megan Spisak
Front End Web Development Techdegree Student 1,168 PointsI did HIDAYATULLAH ARGHANDABI and the code worked. Maybe its a bug. Sometimes on freecodecamp the same right code would be wrong for me. I had to wait a day for the thing not to bug.
<!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>
Oszkár Fehér
Treehouse Project ReviewerDid you tried with © ?
You can check this site for more
I hope it helps
HIDAYATULLAH ARGHANDABI
21,058 Pointsi tried my code and it works
Zachary Pimentel
Front End Web Development Techdegree Graduate 18,393 PointsZachary Pimentel
Front End Web Development Techdegree Graduate 18,393 PointsYou have to replace the & and © with the HTML syntax for them. So the syntax for & in HTML is '&'; and the symbol for © in HTML is '©'; . Just make sure you remove the ' ' I put in so the syntax would display.