This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
CV-html/index.html
2025-03-02 23:39:53 +13:00

51 lines
1.4 KiB
HTML

<!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>
<p>+64 0224772398</p>
<p>pradyun.setti@icloud.com</p>
</div>
<div id="name-card" class="flex flex-col items-end">
<p class="text-8xl font-bold">
Pradyun Setti
</p>
<p class="text-8xl font-light">
Engineer • Creator
</p>
</div>
</div>
<hr class="border-t-3 mt-15 mb-8">
<div id="about-me" class="flex justify-between">
<p class="text-lg font-light">
About Me
</p>
<div class="flex flex-col w-200">
<p>
After finishing high school in 2020, I'm looking for some experience in the
workforce while I am at uni, and learn lots about the industry as I do so.
</p>
<p class="mt-4">
In my free time, I love photography, going on biking trips with my family,
baking, and managing my ever-growing homelab.
</p>
</div>
</div>
<hr class="border-t-3 my-8">
</body>
</html>