How do I link a folder from my computer to my html file? Each folder I want to open is inside the same folder where I saved my html file.
I'll leave the print on the screen to help you understand. Within the pm-projects folder are the pm-project001, pm-project002, and pm-project003 folders; these are the folders I want to open in my html file, which is also saved in the pm-projects folder.
I inserted the href of my html file into the folder path that I want to appear in my list, but clicking on the links I get the answer "Can not GET / Users / Isadora / Documents / Web Development / pm-projects / pm -proj001 ".
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Projetos</title>
</head>
<body>
<ul>
<li class="feito"><a href="C:Users/Isadora/Documents/DesenvolvimentoWeb/pm-projetos/pm-proj001">Projeto 001</a></li>
<li class="feito"><a href="C:Users/Isadora/Documents/DesenvolvimentoWeb/pm-projetos/pm-proj002">Projeto 002</a></li>
<li class="feito"><a href="C:Users/Isadora/Documents/DesenvolvimentoWeb/pm-projetos/pm-proj003">Projeto 003</a></li>
</ul>
</body>
</html>