-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
78 lines (68 loc) · 3.87 KB
/
links.html
File metadata and controls
78 lines (68 loc) · 3.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Omar Tarshan | Links</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body { background-color: #050505; color: white; font-family: 'Inter', sans-serif; }
.link-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(0, 242, 255, 0.1);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-card:hover {
transform: scale(1.02);
background: rgba(0, 242, 255, 0.08);
border-color: #00f2ff;
box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}
</style>
</head>
<body class="flex flex-col items-center p-6 min-h-screen">
<div class="mt-12 mb-8 text-center">
<div class="w-28 h-28 bg-gradient-to-tr from-[#00f2ff] to-[#7000ff] rounded-full mx-auto p-1 shadow-[0_0_25px_rgba(0,242,255,0.4)]">
<img src="your-photo.jpg" alt="Omar Tarshan" class="w-full h-full rounded-full object-cover bg-black" onerror="this.src='images/portfolio-image.webp'">
</div>
<h1 class="text-2xl font-black mt-4 tracking-tight uppercase">Omar Tarshan</h1>
<p class="text-[#00f2ff] text-sm font-medium mt-1">Graphic designer , Presentation Designer , Photo Editor & Visual Artist</p>
</div>
<div class="w-full max-w-sm space-y-4">
<a href="index.html" target="_blank" rel="noopener noreferrer" class="link-card w-full p-4 rounded-2xl flex items-center gap-4">
<div class="w-10 h-10 bg-[#00f2ff]/10 rounded-full flex items-center justify-center">
<i class="fas fa-external-link-alt text-[#00f2ff]"></i>
</div>
<span class="flex-1 font-semibold text-sm">My Official Website</span>
</a>
<a href="https://linkedin.com/in/omartarshan" target="_blank" rel="noopener noreferrer" class="link-card w-full p-4 rounded-2xl flex items-center gap-4">
<div class="w-10 h-10 bg-[#0077b5]/10 rounded-full flex items-center justify-center">
<i class="fab fa-linkedin-in text-[#0077b5]"></i>
</div>
<span class="flex-1 font-semibold text-sm">LinkedIn Profile</span>
</a>
<a href="https://wa.me/201097463663" target="_blank" rel="noopener noreferrer" class="link-card w-full p-4 rounded-2xl flex items-center gap-4">
<div class="w-10 h-10 bg-[#25D366]/10 rounded-full flex items-center justify-center">
<i class="fab fa-whatsapp text-[#25D366]"></i>
</div>
<span class="flex-1 font-semibold text-sm">Direct WhatsApp Contact</span>
</a>
<a href="https://facebook.com/omar.tarshan.2025" target="_blank" rel="noopener noreferrer" class="link-card w-full p-4 rounded-2xl flex items-center gap-4">
<div class="w-10 h-10 bg-[#1877F2]/10 rounded-full flex items-center justify-center">
<i class="fab fa-facebook-f text-[#1877F2]"></i>
</div>
<span class="flex-1 font-semibold text-sm">Follow on Facebook</span>
</a>
<a href="https://instagram.com/omar_tarshan" target="_blank" rel="noopener noreferrer" class="link-card w-full p-4 rounded-2xl flex items-center gap-4">
<div class="w-10 h-10 bg-[#E4405F]/10 rounded-full flex items-center justify-center">
<i class="fab fa-instagram text-[#E4405F]"></i>
</div>
<span class="flex-1 font-semibold text-sm">Follow on Instagram</span>
</a>
</div>
<footer class="mt-auto py-10">
<p class="text-[10px] text-gray-600 uppercase tracking-[0.3em] font-bold"> Eng/ Omar Tarshan © 2026</p>
</footer>
</body>
</html>