I been trying to create a navbar on my website, the problem is that when I create the folder with the html pages and when I click on it the page says this on the url C:/User/jorge/OneDrive/Desktop/rootfolder/pages/pages/education.html. Browser says this: Your file was not found It may have been moved or deleted. I am using Google chrome to create website. This is my code if needed.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=PT+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Social Work | Home Page</title>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/agency.html">Agency</a></li>
<li><a href="pages/education.html">Education</a></li>
<li><a href="pages/resource.html">Resource</a></li>
<li><a href="pages/video.html">Videos</a></li>
</ul>
</nav>
<h1>Education Page</h1>
</body>
</html>