initial commit; header section finished

This commit is contained in:
june 2025-03-02 23:30:09 +13:00
commit e6c266714c
Signed by untrusted user who does not match committer: breadone
GPG Key ID: FDC19FE143200483

29
index.html Normal file
View File

@ -0,0 +1,29 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
</head>
<body class="bg-[#F8F4DA] m-5">
<div class="flex justify-between" id="header">
<div id="contact-details" class="flex flex-col text-sm justify-start">
<p>Auckland, NZ</p> <br>
<p>+64 0224772398</p><br>
<p>pradyun.setti@icloud.com</p>
</div>
<div id="name-card" class="flex flex-col items-end">
<p class="text-8xl font-medium">
Pradyun Setti
</p>
<p class="text-7xl font-light">
Engineer • Creator
</p>
</div>
</div>
</body>
</html>