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

1.0 KiB

title
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: What does Dead Link on HTML and CSS do?)

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!