1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
social-links-profile/index.html

94 lines
2.5 KiB
HTML
Raw Normal View History

2024-07-01 13:20:39 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Social links profile</title>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images/favicon-32x32.png"
/>
2024-07-01 15:45:44 +00:00
<style>
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-weight: 100 900;
src: url("/fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
font-family: "Inter";
}
}
</style>
2024-07-01 13:20:39 +00:00
</head>
<body>
2024-07-01 15:45:44 +00:00
<div class="flex min-h-screen items-center justify-center bg-black p-6">
<main
class="flex w-full max-w-sm flex-col items-center gap-6 rounded-xl bg-dark-grey p-6 text-white sm:p-10"
>
<img
class="rounded-full"
width="88"
height="88"
src="/images/avatar-jessica.jpeg"
alt="Jessica's picture"
/>
<div class="flex flex-col items-center gap-1">
<p class="text-heading">Jessica Randall</p>
<p class="text-body-bold text-neon-green">London, United Kingdom</p>
</div>
<p class="text-body-regular">"Front-end developer and avid reader."</p>
<ul class="w-full space-y-4">
<li>
<a
class="block cursor-pointer rounded-lg bg-grey py-3 text-center text-body-bold hover:bg-neon-green hover:text-grey"
>
GitHub
</a>
</li>
<li>
<a
class="block cursor-pointer rounded-lg bg-grey py-3 text-center text-body-bold hover:bg-neon-green hover:text-grey"
>
Frontend Mentor
</a>
</li>
<li>
<a
class="block cursor-pointer rounded-lg bg-grey py-3 text-center text-body-bold hover:bg-neon-green hover:text-grey"
>
LinkedIn
</a>
</li>
<li>
<a
class="block cursor-pointer rounded-lg bg-grey py-3 text-center text-body-bold hover:bg-neon-green hover:text-grey"
>
Twitter
</a>
</li>
<li>
<a
class="block cursor-pointer rounded-lg bg-grey py-3 text-center text-body-bold hover:bg-neon-green hover:text-grey"
>
Instagram
</a>
</li>
</ul>
</main>
</div>
2024-07-01 13:20:39 +00:00
</body>
</html>