first do on your terminal : npm init -y the after follow was it says on tailwind website for the cli
the after copy the cdn and paste it in your html after add this to scripts in your package.json(not package-lock.json): "dev": "tailwindcss -i ./input.css -o ./output.css --watch"
create a tailwind.config.js file and add this inside: /** @type {import('tailwindcss').Config} / module.exports = { content: ["./**/.{html,js}"], theme: { extend: {}, }, plugins: [], };
then now you can start using your tailwind🥳🥳🥳
p