I am creating a basic website. I added some pages and linked them. I was able to redirect to the pages easily but I just rebooted mu computer and now the links don’t seem to work. enter image description here
this is the wrong syntax 🚫
<a href="/file.html">file</a>
use this ✅
<a href="./file.html">file</a>
or ✅
<a href="file.html">file</a>
read more about how file path works