hyperlink - Is there an easier way to link back to the index.html file? -
i trying link index.html sub folder inside portfolio, right have method "works", feels long route. here "link" looks in notepad++ <a class="navlist" href="/college/tech%20classes/html%20and%20javascript/midterm%20project/index.html">home</a>.
i curious if there different/easier way link index.html?
edit: guess should mention doing within said folder/html file l:\college\tech classes\html , javascript\midterm project\htmljava\htmljava.html.
you can use relative link .. means going 1 folder. e.g.:
<a class="navlist" href="../index.html">home</a>
Comments
Post a Comment