File size: 722 Bytes
c87a90f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Green Tailwind Page</title>
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-green-500 min-h-screen flex flex-col items-center justify-center text-white">
    <div class="max-w-md mx-auto p-8 bg-green-600 rounded-lg shadow-lg">
        <h1 class="text-3xl font-bold mb-4">Welcome to My Green Page!</h1>
        <p class="mb-4">This is a simple webpage with a green background created using Tailwind CSS.</p>
        <p class="text-sm text-green-200">Created with Claude and published to Hugging Face Spaces.</p>
    </div>
</body>
</html>