I am trying to link my CSS file to the HTML but it doesn't seem to work and I do not see any errors on the syntax
<link rel="stylesheet" type="text/css" href="Project Website Styling.css">
Thank you
I am trying to link my CSS file to the HTML but it doesn't seem to work and I do not see any errors on the syntax
<link rel="stylesheet" type="text/css" href="Project Website Styling.css">
Thank you
You shouldn't have those spaces in your file name. Separate it with hyphens. If you can't change the file name, then add %20
where the spaces are in that code above.
href="Project%20Website%20Styling.css"