I'm having an issue linking my style.css file to my index.html file. They are both located in different folders.
Here is the folder structure:
/parent
- /src/index.html
- /css/style.css
I have attempted using the following code snippets:
<link rel="stylesheet" type="text/css" href="../css/style.css">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
Despite trying these options, I keep encountering the same error message in the terminal:
GET /css/style.css 404 1.542 ms - 152
Currently, I am utilizing VS Code with live-server.
Note: Interestingly, when I move my index.html file outside the src folder to the parent directory, the path href="css/style.css" works as expected.