-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 2.93 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 2.93 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hey there, I'm Arvin!</title>
<meta name="description" content="Hi, I'm Arvin Rasheda. A developer skilled in PHP, Java, Kotlin, Vue.js, React, Flutter, and SEO optimization." />
<meta name="keywords" content="Arvin Rasheda, Developer, PHP, Java, Kotlin, Vue, React, Flutter, SEO Expert" />
<meta name="author" content="Arvin Rasheda" />
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.16/dist/tailwind.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.3/js/all.min.js" defer></script>
<style>
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeIn {
animation: fadeIn 1s ease-out;
}
</style>
</head>
<body class="bg-gray-100">
<main class="flex justify-center items-center min-h-screen">
<section class="bg-white p-8 rounded-lg shadow-md max-w-md w-full animate-fadeIn">
<h1 class="text-3xl font-semibold mb-2 text-center">Hey there, I'm Arvin!</h1>
<h2 class="text-lg font-semibold mb-4 text-center text-gray-800">Full Stack Developer & SEO Enthusiast</h2>
<p class="text-gray-600 mb-4 text-center">
I mostly program in PHP, Java, and Kotlin, but I also have experience with Vue.js, React.js, and Flutter.
</p>
<p class="text-gray-600 mb-4 text-center">
I'm knowledgeable in SEO and enjoy optimizing websites for search engines to boost visibility and traffic.
</p>
<div class="mt-6 text-center">
<h3 class="text-gray-700 mb-2">Connect with me:</h3>
<div class="flex justify-center space-x-4">
<a href="https://www.linkedin.com/in/arvinrasheda/" target="_blank" aria-label="LinkedIn">
<i class="fab fa-linkedin text-blue-600 text-2xl hover:scale-110 transition-transform"></i>
</a>
<a href="https://www.facebook.com/arvin.rasheda" target="_blank" aria-label="Facebook">
<i class="fab fa-facebook text-blue-500 text-2xl hover:scale-110 transition-transform"></i>
</a>
<a href="https://www.instagram.com/arvinrasheda/" target="_blank" aria-label="Instagram">
<i class="fab fa-instagram text-pink-500 text-2xl hover:scale-110 transition-transform"></i>
</a>
<a href="https://github.com/arvinrasheda" target="_blank" aria-label="GitHub">
<i class="fab fa-github text-gray-800 text-2xl hover:scale-110 transition-transform"></i>
</a>
<a href="https://gitlab.com/arvinrasheda" target="_blank" aria-label="GitLab">
<i class="fab fa-gitlab text-orange-600 text-2xl hover:scale-110 transition-transform"></i>
</a>
</div>
</div>
</section>
</main>
</body>
</html>