31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="output.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav class="bg-gradient-to-l from-fuchsia-800 to-cyan-600 p-4">
|
|
<ul class="flex justify-center w-full">
|
|
<li class="ml-6">
|
|
<a href="#" class="text-white hover:text-gray-300"><code class="text-xl">SNOTES</code></a>
|
|
</li>
|
|
<li class="mr-6 ml-auto">
|
|
<a href="#"
|
|
class="text-white bg-purple-500 hover:bg-cyan-600 hover:text-white rounded-md px-4 py-2 transition-colors duration-200">DOWNLOAD</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="container mx-auto bg-white dark:bg-slate-900 text-black dark:text-white">
|
|
<h1 class="text-4xl font-bold text-center mt-8">Welcome to My Website</h1>
|
|
<p class="text-lg text-center mt-4">This is a basic Tailwind CSS boilerplate.</p>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |