Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

15 lines
1.0 KiB
Markdown

---
title: Make Dead Links Using the Hash Symbol
---
# Make Dead Links Using the Hash Symbol
---
## Problem Explanation
A dead link is just an anchor element in place, syntactically correct, clickable that point to the top of the page when clicked without refreshing the content ( you can check this question on FCC forum for more in-depth analysis: <a href='https://forum.freecodecamp.org/t/what-does-dead-link-on-html-and-css-do/164550/7' target='_blank' rel='nofollow'>What does Dead Link on HTML and CSS do?</a>)
<!-- [What does Dead Link on HTML and CSS do?](https://forum.freecodecamp.org/t/what-does-dead-link-on-html-and-css-do/164550/7) ) -->
To create a dead link you first should write a normal anchor element (the challenge provides one, do not rewrite it) and then modify the `href` attribute as stated in the instructions.
If you have deleted or modified something in the original code other than the href attribute of the existing `a` tag remember that you can click on the `reset all code` button to restart with a clean code.
Good luck!