green-tailwind-page / index.html
julien-c's picture
julien-c HF Staff
Add index.html
c87a90f verified
raw
history blame contribute delete
722 Bytes
<!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>