how to import scss in html code example
Example 1: Sass @import and Partials
@import "variables";
@import "colors";
@import "reset";
reset.scss
@import "reset";
body {
font-family: Helvetica, sans-serif;
font-size: 18px;
color: red;
}
Example 2: how to link scss to html
You can not "attach" a SASS/SCSS file to an HTML document.
SASS/SCSS is a CSS preprocessor that runs on the server and compiles to
CSS code that your browser understands.
https://www.javatpoint.com/sass-example