I try to link my external css to the html, but it does not work for me, that is, it does not load the style.
The path is wrong, as your file index.html
and the folder estilo
are in the same directory, just this route is enough: estilo/style.css
.
You can use it like this:
<link rel="style" href="estilo/style.css">
The problem is that in the link you are uploading a level, that is, you put it .. and it will look for the css in the folder at the same level as the CODE folder. Keep in mind that the href is relative to the location of your HTML.
Try putting it that way, it should work:
<link rel="style" href="estilo/style.css">
Good luck!