When you add source or paths of some files make sure the path is always in lowercase letters, also don't create much Stylesheets and Javascript files instead create a one single file like for eg. style.css and javascript file script.js and write all your code in those files by dividing them using comments like this:
body {
// Some code here
}
navbar {
// Some code here
}
// Other part which you want to divide after this comments like grids, layouts, etc
video-grid {
// Some code here
}
When you add source or paths of some files make sure the path is always in lowercase letters, also don't create much Stylesheets and Javascript files instead create a one single file like for eg.
style.css
and javascript filescript.js
and write all your code in those files by dividing them using comments like this:Same goes with Javascript also!
Thank you, iambhvsh 🩷