muhammadaziz01-dev / MOVIES

NETFLIX

Home Page:https://65d625c623e049d33a6b0f17--whimsical-mochi-ea9f87.netlify.app/movies

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tailwind Starter

  1. npm init

npm install -D tailwindcss

npx tailwindcss init 

index.html

<!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>
  1. styles/style.css

@tailwind base;
@tailwind components;
@tailwind utilities;


  1. Configuration tailwind.config.js

tailwind.config.js


/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./index.html", "./pages/**/*.html/"],
  theme: {
    extend: {},
  },
  plugins: [],
}


  1. watching pages
npx tailwindcss -i ./styles/index.css -o ./styles/output.css --watch