Recently, I encountered an issue while working on my website in Dreamweaver. The problem arose when trying to link a CSS file to an HTML page.
While the index.html page was successfully linked to style.css and displaying correctly, the Products.html page failed to be linked to styleproducts.css. Both CSS files were stored in a folder named "css," while Products.html was saved in a folder labeled "pages."
Below is the code snippet from Product.html for linking the CSS file:
<link href="css/styleproducts.css" rel="stylesheet" type="text/css">
I would greatly appreciate any assistance with this matter!!