Spaces:
Running
Running
Add index.html
Browse files- index.html +32 -19
index.html
CHANGED
@@ -1,19 +1,32 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Yellow Background Page</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
</head>
|
9 |
+
<body class="bg-yellow-300 min-h-screen flex flex-col items-center justify-center p-8">
|
10 |
+
<div class="max-w-2xl bg-yellow-100 p-8 rounded-lg shadow-lg">
|
11 |
+
<h1 class="text-4xl font-bold text-yellow-800 mb-4">Hello from Hugging Face Spaces!</h1>
|
12 |
+
<p class="text-xl text-yellow-700 mb-6">This is a simple webpage with a sunny yellow background created with Tailwind CSS.</p>
|
13 |
+
<div class="bg-white p-6 rounded-md shadow-inner">
|
14 |
+
<p class="text-gray-700 mb-4">The page features:</p>
|
15 |
+
<ul class="list-disc pl-5 text-gray-700 space-y-2">
|
16 |
+
<li>A yellow background for the entire page</li>
|
17 |
+
<li>A lighter yellow container with rounded corners</li>
|
18 |
+
<li>Responsive design that works on different screen sizes</li>
|
19 |
+
<li>Styled with Tailwind CSS for clean, efficient styling</li>
|
20 |
+
</ul>
|
21 |
+
</div>
|
22 |
+
<div class="mt-8 flex justify-center">
|
23 |
+
<button class="bg-yellow-500 hover:bg-yellow-600 text-white font-bold py-2 px-4 rounded-full transition duration-300 transform hover:scale-105">
|
24 |
+
Click Me!
|
25 |
+
</button>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
<footer class="mt-12 text-yellow-800 text-center">
|
29 |
+
<p>Created with Claude and published to Hugging Face Spaces</p>
|
30 |
+
</footer>
|
31 |
+
</body>
|
32 |
+
</html>
|