-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 2.08 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bhushan Khanale - Portfolio</title>
<meta name="description" content="Welcome to Bhushan Khanale's personal website. Explore my blog and connect with me on social media.">
<meta property="og:title" content="Bhushan Khanale - Personal Website">
<meta property="og:description" content="Welcome to Bhushan Khanale's personal website. Explore my blog and connect with me on social media.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bhushankhanale.com">
<link rel="canonical" href="https://www.bhushankhanale.com">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 font-sans">
<header class="bg-white shadow">
<nav class="container mx-auto px-6 py-3 flex justify-between items-center">
<h1 class="text-xl font-bold">
<a href="/" class="text-gray-800 hover:text-gray-600">Bhushan Khanale</a>
</h1>
<a href="https://blog.bhushankhanale.com" target="_blank" class="text-gray-600 hover:text-gray-800">Blog</a>
</nav>
</header>
<main class="container mx-auto px-6 py-8 text-center">
<img src="./images/profile-photo.png" alt="Bhushan Khanale's profile picture" class="rounded-full mx-auto mb-4 w-48 h-48 object-cover">
<h2 class="text-2xl font-bold text-gray-800 mb-2">Bhushan Khanale</h2>
<div class="flex justify-center space-x-4">
<a href="https://twitter.com/BhushanKhanale" target="_blank" class="text-blue-500 hover:text-blue-600" aria-label="Follow me on Twitter">Twitter</a>
<a href="https://linkedin.com/in/bhushan-khanale" target="_blank" class="text-blue-700 hover:text-blue-800" aria-label="Connect with me on LinkedIn">LinkedIn</a>
<a href="https://github.com/bkhanale" target="_blank" class="text-gray-800 hover:text-gray-900" aria-label="Check out my projects on GitHub">GitHub</a>
</div>
</main>
</body>
</html>