A minimalistic and modern template for a quick start HTML5-based web project. Includes basic structure with clean and semantic code, adaptive markup, support for modern standards and ready-to-use tools for fast development. Ideal for creating one-page websites, prototypes or training projects.
- To work with this html5 starter template in a new project, clone all the contents of the repository using the command:
git clone https://github.com/mrnko/modern-html5-starter-template.git
- While in the root folder of the project, run the command
npm i
, which will install all the dependencies in package.json. - Enjoy the development of your new project 😀
The project allows you to call the required system npm scripts via command line / terminal.
npm run sass-watch
— Convert SCSS style files from thestyles
folder to CSS files in thecss
folder and start watching for any changes. Whenever you modify a SCSS file, it automatically recompiles the CSS.npm run dev
— Runs both SCSS watching and a local development server using serve in parallel.npm run build
— Compile SCSS files from thestyles
folder into CSS in thecss
folder and produce a minified (compressed) CSS output suitable for production.