Open ChadPunk opened 7 years ago
Same with your HTML page. <li><a href="/Users/UST/Desktop/Project/My First Website/Contact Page">Contact</a></li>
Replace that with <li><a href="./contact.html">Contact</a></li>
Same thing with linking your stylesheet. Change
<link href="css" rel="stylesheet">
to
<link href="./resources/css/style.css" rel="stylesheet">
I will give it a try later and if i cant figure it out ill let you know 👍
It's never recommended to hotlink any files. You should always have an internal resource file with your CSS and pictures. So, create a new folder named resources in that make separate folders for your CSS and images and then link to those like this.
`