New Project File Structure
When create a new project from scratch without any template, please restructure file path & folder according to the standard scaffolding that stated below.
your-project-folder/
├── index.html
└── assets/
└── css/
├── bootstrap.css
└── custom.css
└── js/
├── file.js
└── otherfile.js
└── images/
├── image.jpg
└── image-2.png
└── fonts/
├── font.woff
└── font-2.woff
Template Project File Structure
Using bought template usually will bring different project file structure according to the template creator itself. Developer must re-arrange the project structure according to our basic "New Project File Structure" with the attachment of template necessary files.
your-project-folder/
├── index.html
└── assets/
└── css/
├── bootstrap.css
└── custom.css
└── js/
├── file.js
└── otherfile.js
└── images/
├── image.jpg
└── image-2.png
└── fonts/
├── font.woff
└── font-2.woff