Created
July 12, 2025 05:27
-
-
Save jSayal/2d4a3bcf2895411c25623226648a3a3f to your computer and use it in GitHub Desktop.
Tailwind CSS Playground Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| This is a Tailwind CSS playground template. | |
| You can use this template to play with Tailwind CSS. | |
| --- | |
| ⚠️ IMPORTANT: | |
| Do not use this template for production. | |
| --> | |
| <!doctype html> | |
| <html> | |
| <head> | |
| <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script> | |
| <title>Tailwind CSS Playground Template</title> | |
| </head> | |
| <body> | |
| <!-- Tailwind CSS Hello World --> | |
| <div | |
| class="h-screen text-neutral-50 bg-neutral-500 flex items-center justify-center text-8xl" | |
| > | |
| <h1>Tailwind CSS Demo</h1> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment