A clean and minimal starter template for building static HTML projects using Tailwind CSS.
This repo is designed for simple prototypes, landing pages, student projects, or any environment where you want Tailwind without complex frameworks.
If you don’t want to use Git, you can download the project as a ZIP:
- Go to the repository page
https://github.com/bureaupixel/BP_HTML_09TWND - Click the green Code button
- Choose Download ZIP
- Extract the ZIP file on your computer
Now you have the project folder ready to use.
Open the extracted folder in your terminal:
cd BP_HTML_09TWND
Then install everything needed: npm install
Run: npm run build
This will: Read the Tailwind directives from src/input.css Build the final CSS into dist/output.css Watch for changes in your HTML/CSS files Keep this running while you're working.
open index.html
You write classes directly in index.html Tailwind scans the project based on: content: ["./*.html"] Tailwind outputs the generated CSS into: dist/output.css
The HTML links to this file:
Edit Tailwind Settings Modify tailwind.config.js to: Add custom colors Extend fonts Add spacing Enable plugins