We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59fe563 commit 3cd76fcCopy full SHA for 3cd76fc
03_quiz-app/index.html
@@ -0,0 +1,12 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Quiz Application </title>
7
+ <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
8
+</head>
9
+<body>
10
+
11
+</body>
12
+</html>
03_quiz-app/script.js
03_quiz-app/tailwind.config.js
@@ -0,0 +1,11 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: ["./*.html"], // This tells Tailwind to scan all HTML files in the root
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+};
0 commit comments