1/* Answer to: "how to use scss in html" */
2
3/*
4 Unfortunately, you can't directly insert an SCSS (Sassy CSS) file
5 into your HTML. That's because SASS is a superset (or so-called
6 preprocessor or extension) of CSS3's syntax, which is NOT
7 supported by web browsers.
8
9 To take full advantage of all the incredible features offered by
10 SCSS in your HTML page, you’ll first have to compile it down
11 to CSS.
12
13 For more information, check out the answers in:
14 https://www.quora.com/How-do-I-insert-an-SCSS-file-into-HTML
15*/