Import tailwind into your theme
Simple approach (not recommended)
ATTENTION: This is not recommended. Below you can find a better way to do it.
_13<!doctype html>_13<html>_13<head>_13 <meta charset="UTF-8">_13 <meta name="viewport" content="width=device-width, initial-scale=1.0">_13 <script src="https://cdn.tailwindcss.com"></script>_13</head>_13<body>_13 <h1 class="text-3xl font-bold underline">_13 Hello world!_13 </h1>_13</body>_13</html>
Advanced: Local development environment for working with tailwind
First setup local development environment
_10