Hi I have a simple HTML question that I am struggling with. I have googled and looked through stackoverflow, but I must either be doing something incorrectly because I cannot get this to work. I am trying to make a simple link in an index.html page that links to a anchor tag in another HTML page that is within a folder in the root directory.
<!DOCTYPE html>
<html lang="en">
<head>
<title> </title>
<meta charset="utf-8">
<meta name="author" content=" ">
<meta name="description" content=" ">
<meta name="keywords" content=" ">
<style type="text/css">
</style>
</head>
<body>
<h1>Canyons Cycling Club</h1>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Events</a>
<a href="music.html">Join</a>
<a href="jobs.html">Gallery</a>
</nav>
<h2>What you need to ride:</h2>
<ul>
<li>A road bike in good working order</li>
<li>One, preferably two, filled water bottlers</li>
<li>A bicycle helmet compliant with at least one of the following
safety and standards organizations.
<ul>
<li>CPSC</li>
<li>ANSI</li>
<li>ASTM</li>
</ul>
<li>A route sheet</li>
<li>A tool pack, spare tube, or patch kit</li>
</ul>
<div>View the Friday, Saturday, and Sunday <i>Index</i> sections on the
Events page for a listing of this week's no-drop, supervised rides.
</div>
<a href="events folder/events.html#friday">Go to Friday Index</a>
</body>
</html>
I am trying to create a "Go to Friday Index" link to events.html inside the events folder in the root directory. I tried creating
<a name="friday" id="friday"><strong>FRIDAY Index <br> </strong></a>
inside events.html, but when I click the link inside index.html, it opens nothing in a new tab. Thanks for the help in advance.