[Solved] My html file can’t connect to my css file? [closed]


I assume your file structure is like this based on what you said.

/webdevangela
  /css
    style.css
  /html
    *.html

So your link needs to go out of your html folder by using ../ and then into the css folder.

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

solved My html file can’t connect to my css file? [closed]