Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

starr13
2,494 PointsWhat's the copyright code for html? The objectives keeps telling me: "Bummer:" Please help.
<h3>Design & Development</h3> <p>Contact me at <a href="mailto:cookiesonbake@gmail.com">this email</a>.</p> <p>©2017</p> </body> </html>
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:cookiesonbake@gmail.com">this email</a>.</p>
<p>©2017</p>
</body>
</html>
6 Answers

David Brener
3,794 PointsJulia,
Your problem seems to be in the HTML itself. Use the ampersand like this Design & Development
and try
© 2017
Please refer to my code block below.
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:cookiesonbake@gmail.com">this email</a>.</p>
<p>© 2017</p>
</body>
</html>

David Brener
3,794 Points<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h3>Design & Development</h3>
<p>Contact me at <a href="mailto:cookiesonbake@gmail.com">this email</a>.</p>
<p>© 2017</p>
</body>
</html>

Gari Merrifield
9,571 PointsDavid's answer shows the correct syntax, but offers no explanation, so I would add the following :
Bare ampersands would be a problem. HTML Entities start with the ampersand and end with a semi-colon.
A little about reserved characters : https://developer.mozilla.org/en-US/docs/Glossary/Entity
And a couple of charts to help you find the entity you need :

Mohamed Ahmed
6,517 PointsRemove Ⓒ symbol and write © this entity rather than Ⓒ symbol so the browser will render it to Ⓒ symbol , and the objectives will not telling you Bummer anymore.

Gari Merrifield
9,571 Pointsexcept it won't like the bare ampersand either...

Pepe Toño
13,814 PointsIn this excersise you have to symbols you need to write in html code, the first one is: "&" and the second one is: "the copyright"; for the first one replace by "&" and for the second one replace by "©". Happy coding!

starr13
2,494 PointsI'm still stuck. I can't get it to work.
Bummer: Make sure you're setting the entity for the ampersand.
index.html
<!DOCTYPE html> <html> <head> <title>My Page</title> </head> <body> <h3>Design & Development</h3> <p>Contact me at <a href="mailto:cookiesonbake@gmail.com">this email</a>.</p> <p>© 2017/p> </body> </html>

starr13
2,494 PointsI want thank everyone that came to he my recuse for the challenge question that I was stuck. You all are awesome. Thanks again for the support.
Julia C.