Here’s the CDN Link of Tailwind CSS Play CDN you can use this CDN to style your app in development.
https://cdn.tailwindcss.com
you have to include this in script
tag inside head
tag like this
<head>
<script src="https://cdn.tailwindcss.com"></script>
</head>
If you want the CSS file link here it is, you can add this in head tags
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
Happy Coding.