Home > front end >  Unable to get my stylesheet to work (atom/html)
Unable to get my stylesheet to work (atom/html)

Time:11-20

I am starting to learn HTML, CSS etc by following a project video. I am using Atom and have followed the video step by step but for some reason Atom does not seem to want to recognise my stylesheet. It isn't altering anything.

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

CodePudding user response:

try adding a dot before in the href like

<link rel="stylesheet" href="./css/styles.css" />

  • Related