19 lines
627 B
HTML
19 lines
627 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dark Theme Centered H1 with Tailwind</title>
|
|
<!-- Include Tailwind CSS from CDN -->
|
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #000;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="flex justify-center items-center h-screen text-white bg-black">
|
|
<h1 class="text-4xl font-bold text-purple-800 bg-blue-900 p-4 rounded">Hello, World!</h1>
|
|
</body>
|
|
</html>
|