diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-04 21:47:53 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-04 21:47:53 +0530 |
| commit | 8ab27073ece9163510e63763ca4cf83a9d9c252b (patch) | |
| tree | 91521b478701ccbd1a6b4c2821583f4004589d2f /tailwindcss/01-cdn/index.html | |
| parent | 10410dbe1d3e16bbfa6c27a788f48885b8a0c6f7 (diff) | |
Added Tailwind CSS sample projects
Diffstat (limited to 'tailwindcss/01-cdn/index.html')
| -rw-r--r-- | tailwindcss/01-cdn/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tailwindcss/01-cdn/index.html b/tailwindcss/01-cdn/index.html new file mode 100644 index 0000000..f6fb60f --- /dev/null +++ b/tailwindcss/01-cdn/index.html @@ -0,0 +1,13 @@ +<!doctype html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script> + </head> + <body> + <h1 class="text-3xl font-bold underline"> + Hello world! + </h1> + </body> +</html> |
