I want to add a new link directing to a local html website to a menu list on a website. The main website is in aspx but I’m working on the html copy. The referenced link points to a html website on my local machine.
<li><a href="C:/Users/User/Desktop/Consulting.html"><b>Custom Solutions</b><br />
Custom Software Applications and Solutions</a></li>
If I replace the href with http://www.google.com , the link point well to google. But it does not work for the local website. C:/Users/User/Desktop/Consulting.html is a downloaded website from an aspx site.
Is the href not working because of denied permissions or because the local website is from an aspx website?
That should be
and it will only work if the HTML file you are viewing is on your local machine.