Change instructions in "Make Dead Links using the Hash Symbol"
See original GitHub issueMake Dead Links using the Hash Symbol
https://www.freecodecamp.com/challenges/make-dead-links-using-the-hash-symbol
Issue Description
Having spent some time in the help room, I frequently see many new campers trip on this challenge. Although the current instructions are not in any way vague or difficult to understand, there is something about it that leads most campers to come up with this incorrect code instead -
`
Click here for cat photos.
`Along with not reading the instructions carefully, I think this also stems, in part, from the way this instruction is worded
Replace the value of your a element’s href attribute with a #, also known as a hash symbol, to turn it into a dead link.
I feel perhaps the wording (element
, attribute
, value
) comes across as too technical for some new campers, which leads them to think that the href
attribute itself should be replaced with a #
. Maybe it could be replaced with something like this
The current value of the href attribute is a link that points to “http://www.freecatphotoapp.com”. Change the value of href attribute such that it is a hash (#) instead.
Also, in a previous challenge, there is a diagram that depicts the various parts of a p
element and an anchor tag.
While this may or may not be related to the issue here, the last arrow is somewhat incorrect - it actually points to the value of the href attribute, while the label reads anchor tag’s href attribute. Maybe a change in the label could be helpful for this issue? Thanks to @dhcodes for pointing this out!
Just putting in my two cents here! I think this is something we could look into. If the mods feel so too, I would be happy to work on a PR.
Cheers!
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:9 (4 by maintainers)
Top GitHub Comments
Oh dear, thank you. I was one of those who misunderstood the description! But google brought me here and it did the trick!
After nearly pounding my head off the wall. I found this page. My frustration only grew as I read through the comments knowing I had been doing it correctly but still wasn’t working. Then the very last comment… F5 to refresh the Chrome page worked.