julien-c HF Staff commited on
Commit
17ad54a
·
verified ·
1 Parent(s): 0c681ff

Add index.html

Browse files
Files changed (1) hide show
  1. index.html +32 -19
index.html CHANGED
@@ -1,19 +1,32 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
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>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>