Skip to content

Commit 3cd76fc

Browse files
committed
started new project
1 parent 59fe563 commit 3cd76fc

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

03_quiz-app/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Whitespace-only changes.

03_quiz-app/tailwind.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
3+
4+
/** @type {import('tailwindcss').Config} */
5+
module.exports = {
6+
content: ["./*.html"], // This tells Tailwind to scan all HTML files in the root
7+
theme: {
8+
extend: {},
9+
},
10+
plugins: [],
11+
};

0 commit comments

Comments
 (0)