-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 2.67 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Connect with Me</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet" />
<style>
body {
background-color: #f9fafb; /* Light gray */
}
</style>
</head>
<body class="flex flex-col items-center justify-center min-h-screen p-6">
<div class="max-w-3xl w-full bg-white shadow-lg rounded-lg p-8">
<h1 class="text-4xl font-bold text-center text-gray-800 mb-8">Connect with Me</h1>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6">
<!-- LeetCode Card -->
<a href="https://leetcode.com/u/goyal_divanshi/" target="_blank" class="flex flex-col items-center bg-white text-gray-800 rounded-lg shadow-lg hover:shadow-[0_-10px_20px_rgba(0,0,0,0.2)] transition-transform transform hover:scale-105 p-4 cursor-pointer shadow-[0_-5px_15px_rgba(0,0,0,0.2)]">
<img src="https://www.svgrepo.com/show/306328/leetcode.svg" alt="LeetCode Logo" class="w-10 h-10 mb-2 fill-current text-black" />
<span class="text-lg font-semibold">LeetCode</span>
</a>
<!-- GitHub Card -->
<a href="https://github.com/divanshiii09" target="_blank" class="flex flex-col items-center bg-gray-800 text-white rounded-lg shadow-lg hover:shadow-xl transition-transform transform hover:scale-105 p-4 cursor-pointer">
<i class="fab fa-github fa-2x mb-2"></i>
<span class="text-lg font-semibold">GitHub</span>
</a>
<!-- LinkedIn Card -->
<a href="https://www.linkedin.com/in/divanshigoyal09" target="_blank" class="flex flex-col items-center bg-blue-700 text-white rounded-lg shadow-lg hover:shadow-xl transition-transform transform hover:scale-105 p-4 cursor-pointer">
<i class="fab fa-linkedin-in fa-2x mb-2"></i>
<span class="text-lg font-semibold">LinkedIn</span>
</a>
<!-- Gmail Card -->
<a href="mailto:[email protected]" class="flex flex-col items-center bg-gray-600 text-white rounded-lg shadow-lg hover:shadow-xl transition-transform transform hover:scale-105 p-4 cursor-pointer">
<i class="fas fa-envelope fa-2x mb-2"></i>
<span class="text-lg font-semibold">Gmail</span>
</a>
</div>
</div>
</body>
</html>