Whenever I try to link an HTML file, I keep getting the "file not found" message, although all of my files are in the same workspace. Is there a solution to this?
Asked
Active
Viewed 107 times
1 Answers
0
How about you try with: <li><a href="needed.html"> Needed Grade</a></li>
.
NOTICE there is no spacing between href
and ="needed.html"
If that still doesn't work try with <li><a href="/needed.html"> Needed Grade</a></li>
.
It may sound absurd, but first of all be sure you didn't commit any typo errors in your code. Also, it is most likely the URL with which you are trying to link such file doesn't have the right structure. For example: you might be mistakingly looking for a path that doesn't exists. Or confusing a relative path with an absolute one.
Please take a look at the first answer of this question, or at this article, and let me know if I was of any help (or even if I did not understood your issue at all).
Best regards!

El_Cacto
- 26
- 1
- 5
-
I don't exactly follow the solution. How would I change this code – Ryan Mar 22 '20 at 02:06
-
Needed Grade – Ryan Mar 22 '20 at 02:06