So this is my layout for most of my pages:
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/style.css" />
<title>{{title}}</title>
</head>
my css is in a different folder , and some of the css for certain page such like my home looks something like :
.home-banner {
width: 100%;
background-image: url(home-banner6.jpg);
height: 170px;
background-size: cover;
background-repeat: no-repeat;
background-size: 100% 100%;
}
Do i just put it like that in .css? Heres an image of my directory as well. enter image description here