31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Home</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
|
|
</head>
|
|
<body class="bg-gray-900 text-white font-sans">
|
|
<header class="text-center py-6 bg-gray-800">
|
|
<h1 class="text-3xl font-bold text-purple-400">John Doe - Developer</h1>
|
|
</header>
|
|
|
|
<nav class="my-6 text-center">
|
|
<a href="#" hx-get="about.html" hx-target="main" class="mx-4 text-white hover:text-purple-400">About</a>
|
|
<a href="#" hx-get="blog.html" hx-target="main" class="mx-4 text-white hover:text-purple-400">Blog</a>
|
|
</nav>
|
|
|
|
<main id="main" class="max-w-3xl mx-auto p-6 bg-gray-800 rounded-lg">
|
|
<section>
|
|
<h2 class="text-2xl font-bold text-purple-400">Welcome</h2>
|
|
<p class="mt-4">Welcome to my personal website. I'm a developer specializing in web technologies. Check out my blog for the latest updates.</p>
|
|
</section>
|
|
</main>
|
|
<!-- <footer class="text-center py-4 bg-gray-800">
|
|
<p>© 2024 John Doe</p>
|
|
</footer> -->
|
|
|
|
</body>
|
|
</html> |