Automatically create a basic website structure using Windows Batch Script
This autocreate.bat
script allows you to automatically generate a basic structure for a website, including:
assets/css
,assets/js
,assets/img
foldersindex.html
base HTML filereset.css
,normalize.css
,style.css
stylesapp.js
empty JavaScript fileOpenGraph / Twitter Card
metadata
Ideal for:
- starting new web projects
- quickly deploying a framework without manually preparing files
- educational purposes (learning HTML/CSS/JS framework)
project-root/
β
βββ autocreate.bat
βββ index.html
βββ assets/
βββ css/
β βββ reset.css
β βββ normalize.css
β βββ style.css
βββ js/
β βββ app.js
βββ img/
- Copy the
autocreate.bat
file to the desired directory. - Double-click or run it in the command line: cmd autocreate.bat The result will be a complete site structure with basic content.
You can change the title and description variables in the script: set title=Site_name set description=Site_description
Cherniievskyi Yurii π https://chyw.pp.ua
This project is licensed under the MIT License. You are free to use, modify, and distribute it.
Version: 1.0 Date of creation: March 20, 2024 Last modified: August 7, 2025