Spaces:
Running
Running
Add index.html
Browse files- index.html +16 -19
index.html
CHANGED
@@ -1,19 +1,16 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
</div>
|
18 |
-
</body>
|
19 |
-
</html>
|
|
|
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>Green Tailwind Page</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
</head>
|
9 |
+
<body class="bg-green-500 min-h-screen flex flex-col items-center justify-center text-white">
|
10 |
+
<div class="max-w-md mx-auto p-8 bg-green-600 rounded-lg shadow-lg">
|
11 |
+
<h1 class="text-3xl font-bold mb-4">Welcome to My Green Page!</h1>
|
12 |
+
<p class="mb-4">This is a simple webpage with a green background created using Tailwind CSS.</p>
|
13 |
+
<p class="text-sm text-green-200">Created with Claude and published to Hugging Face Spaces.</p>
|
14 |
+
</div>
|
15 |
+
</body>
|
16 |
+
</html>
|
|
|
|
|
|