I'm encountering 404 errors when trying to load both internal and external files on a website through my browser.
My code snippet looks like this:
<link rel="stylesheet" type = "text/css" href='anoceanofsky.css'/>
Despite clearing my cache and testing on different browsers, the issue persists. The CSS file is located in the same directory as the HTML file where this link tag is placed. Additionally, I face difficulties with internal CSS because it fails to load JPGs or GIFs.
For example:
body {
margin: 0;
padding: 0;
text-align: left;
font-family:"Adobe Garamond Pro Bold", Georgia, "Times New Roman", Times, serif;
font-size: 13px;
color: #061C37;
background: #014D5D url(background.png);
background-repeat:repeat-x;
}
In the provided code snippet above, the background.png file located in the same directory as the HTML file does not load.
Your help in resolving this issue would be highly appreciated.
Thank you, Adam