Tailwind CSS is an open source CSS framework. The main feature of this library is that, unlike other CSS frameworks like Bootstrap
Use CDN.
<script src="https://cdn.tailwindcss.com"></script>
<!-- Add the Play CDN script tag to the <head> of your HTML file, and start using Tailwind’s utility classes to style your content. -->
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<h1 class="text-3xl font-bold underline">
Hello world!
</h1>
</body>
</html>
Please subscribe CodeWithNiranjan