I'm currently working on my personal website using HTML and CSS with textedit. I've successfully created functional links for the main navigation menu headings, but I'm encountering issues with the dropdown options. Whenever I try to click on "Year 7" under the "Science" heading, an error message pops up stating: "No file exists at the address 'Users/Mike/Documents/Practise/Navigation Page/“file:///Users/Mike/Documents/Practise/Science/Year 7/ScienceYear7.htm'."
Even though I have written the address as: "file:///Users/Mike/Documents/Practise/Science/Year 7/ScienceYear7.htm" in the coding, it still does not work.
This is the code snippet for that specific section:
<li><a href=“file:///Users/Mike/Documents/Practise/Science/Science/Science.htm”>Science</a>
<ul>
<li><a href=“file:///Users/Mike/Documents/Practise/Science/Year%207/ScienceYear7.htm”>Year 7</a></li>
<li><a href="#">Year 8</a></li>
<li><a href=“#”>Year 9</a></li>
<li><a href=“#”>Year 10</a></li>
<li><a href=“#”>Year 11</a></li>
<li><a href=“#”>Year 12</a></li>
</ul>
I would appreciate any assistance with this issue :(
Update: Now both links are no longer functional.