I am trying to link internal files in my HTML code, but for some reason am unable to. I used terminal to get the file path and double checked it was right but am missing something. In the code below the link to index works but not to Marios Page, if someone could guide me to what I'm doing wrong it would be much appreciated.
Code:
<!DOCTYPE html>
<html>
<head>
<title>Laura</title>
</head>
<body>
<h1>Laura's Page</h1>
<p>Hello I am the Laura.html file</p>
<a href="/Users/bobgohary/Desktop/Linking/Index.html">Click me to go to back to Index :() </a>
<a href="/Users/bobgohary/Desktop/Linking/Europe/Italy/Tuscany/Mario.html">Click me to go to back to Mario's Page </a>
</body>