The styles do not show on the webpage. This is because index.css is not correctly linked. you have ./resources/style.css/index.css however the Resources folder has an uppercase R.
instead of
<link href="./resources/style.css/index.css" type="text/css" rel="stylesheet">
use
<link href="./Resources/style.css/index.css" type="text/css" rel="stylesheet">
The styles do not show on the webpage. This is because index.css is not correctly linked. you have
./resources/style.css/index.css
however the Resources folder has an uppercase R.instead of
<link href="./resources/style.css/index.css" type="text/css" rel="stylesheet">
use<link href="./Resources/style.css/index.css" type="text/css" rel="stylesheet">