File and Folder Structure for Web Sites
- Use folders or directories to help organize files. Recommendation is to adopt folder names of styles(for CSS files),scripts(for JavaScript files), andimages(for images).. ├── images/ ├── index.html ├── scripts/ └── styles └── site.css
- Use index.htmlfilename as appropriate
- Prefer filenames that only have lowercase, numeric, underscore or dashes (e.g. avoid spaces, and other things like !@#$%^&*(){}\|?/>)