website/nginx/site/index.html
2025-06-03 21:56:45 +02:00

28 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link href="/css/style.css" rel="stylesheet">
<link href="/css/tailwind.css" rel="stylesheet">
</head>
<body>
<div class="flex flex-col w-full">
<header class="flex flex-col h-48 w-screen text-[#FFF6DA]" style="background-color: rgb(169, 74, 74);">
<h1 class="p-8 grow place-content-center text-center text-5xl">My Personal Website</h1>
<div class="w-screen flex p-1 justify-center px-30 gap-4" style="background-color: #889E73">
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/">Home</a>
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/html/minishell.html">Minishell</a>
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/html/minirt.html">MiniRT</a>
<a class="p-4 hover:bg-[#aa9E73ff] rounded-md" href="/html/emiku.html">emiku</a>
</div>
</header>
<div class="flex flex-col gap-y-6 bg-neutral-200/70 w-[60%] ml-[10%] mr-auto px-16 py-8">
<p class="leading-relaxed text-gray-700 mb-4 max-w-prose">
Welcome to my Website! <a class="underline text-blue-700 hover:text-blue-900">Get Started...</a>
</p>
</div>
</body>
</html>