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

Chris Mitchell
Chris Mitchell
3,011 Points

for the copyright symbol i am writing © . What am i doing wrong?

What can i do to fix this problem ?

index.html
<!DOCTYPE html> 
<html>
  <head>
    <title>My Page</title>
  </head>
  <body>
    <h3>Design & Development</h3>
    <p>Contact me at <a href="mailto:chris@gmail.com">this email</a>.</p>
    <p>&copy; </p>
  </body>
</html>

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're not really doing anything wrong per se, but you only made it about halfway through the instructions, Also, you don't need to remove the 2017 that was there.

You changed the copyright symbol, but you also need to change the ampersand & inside the <h3> element 2 lines above it. You seem to have a pretty good handle on HTML entities and I believe you can get it with this hint, but let me know if you're still stuck! :sparkles:

Chris Mitchell
Chris Mitchell
3,011 Points
<!DOCTYPE html> 
<html>
  <head>
    <title>My Page</title>
  </head>
  <body>
    <h3>&amp;</h3>
    <p>Contact me at <a href="mailto:chris@gamil.com">this email</a>.</p>
    <p>&copy;</p>
  </body>
</html>

Moderator edited: Added markdown so the code renders properly in the forums.

Chris Mitchell
Chris Mitchell
3,011 Points

my code still dose not work

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi again! No, it does not. As mentioned in my answer, you do not need to remove the original text that was already there, rather simply replace the copyright and ampersand symbols. In both cases, you have removed the original text.

<!-- Your h3 should look like this -->
<h3>Design &amp; Development</h3>

<!-- Your last paragraph should look like this -->
 <p>&copy 2017</p>

Hope this helps! :sparkles: