How am I supposed to use index.html?

Many web servers will have a ‘default document’ that is returned when you specify just a path and no file name. So browsing to http://example.com will return the default document from the document root directory of that domain. Quite often the default document can be named index.html, index.htm or -if PHP is installed- index.php, but … Read more

What’s the difference between SCSS and Sass?

Sass is a CSS pre-processor with syntax advancements. Style sheets in the advanced syntax are processed by the program, and turned into regular CSS style sheets. However, they do not extend the CSS standard itself. CSS variables are supported and can be utilized but not as well as pre-processor variables. For the difference between SCSS … Read more