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 da252b2 commit 62e73c6Copy full SHA for 62e73c6
04_calculator/index.html
@@ -0,0 +1,13 @@
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>Calculator</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+</head>
9
+<body>
10
+
11
+ <script src="script.js"></script>
12
+</body>
13
+</html>
04_calculator/script.js
04_calculator/tailwind.config.js
@@ -0,0 +1,8 @@
+/** @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