mhallas / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Stylesheet link #1

Open farishkash opened 6 years ago

farishkash commented 6 years ago

<link href="../Dasmoto's Arts & Crafts/Resources/css/style.css" type="text/css" rel="stylesheet"> This link is targeting too high outside of the main directory. This is a bad practice as most web servers will not have let you choose the folder of your main directory and will have restricted access.

As a general rule you should be using a link that is relative to the file that is requesting it. Since the html file is in the same directory as the Resources folder the link below will work.

<link href="./Resources/css/style.css" type="text/css" rel="stylesheet">

mhallas commented 6 years ago

Hi Farish,

Thanks for the helpful feedback! Will keep this in mind when linking in future!

Matt