HTML linked with CSS - don t run on browser

Good afternoon.
I am developing the project “Das Motos Arts & Crafts”. It turns out that when I test it in the browser, the css doesn’t work. I’m using Visual Sudio Code.
I have the css file in a differente folder “./CodeAcademy/css/index.css”, and the HTML in “./CodeAcademy/index.html”.
The code link:

<!DOCTYPE html>
<html>
<head>
    <title>Dasmoto's Arts & Crafts</title>
    <link rel="stylesheet" type="text/css" href="/CodeAcademy/css/index.css">
</head>

Can some one help, please?
Thanks

If your files are structured the way I think they are, then the pathing needed would be:

href="./css/index.css"

However, if that doesn’t work, could you drop a screenshot of your directory?

Thank you! :slight_smile:

1 Like

Thanks.
I put all together on the same folder and it worked.