-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.52 KB
/
Copy pathindex.html
File metadata and controls
43 lines (39 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PetalCat.dev</title>
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-black text-white min-h-screen">
<!-- Sticky Navbar -->
<nav class="sticky top-0 z-50 bg-black border-b border-gray-800">
<ul class="flex space-x-4 text-white p-4">
<li>PetalCat.dev</li>
<li><a href="#home" class="text-blue-500">Home</a></li>
<li><a href="#about" class="text-blue-500">About</a></li>
<li><a href="#projects" class="text-blue-500">Projects</a></li>
<li><a href="#contact" class="text-blue-500">Contact</a></li>
</ul>
</nav>
<div class="container mx-auto p-4 min-h-[calc(100vh-120px)]">
<h1 class="text-3xl font-bold">PetalCat.dev</h1>
<p class="text-lg">Welcome to my personal website!</p>
<p class="text-lg">
Here you can find information about me and my projects.
</p>
<!-- Add some dummy content to enable scrolling for testing -->
<div class="py-64"></div>
<p class="text-lg">More content here...</p>
<div class="py-64"></div>
<p class="text-lg">Even more content here...</p>
</div>
<footer class="border-t border-gray-800 bg-black w-full">
<div class="container mx-auto p-4">
<p class="text-center">2025 PetalCat.dev</p>
</div>
</footer>
</body>
</html>