-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mohamad Elhadidy | Software Engineer</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');
.font-delius {
font-family: 'Delius', cursive;
}
</style>
</head>
<body class="bg-black h-screen flex flex-col justify-center items-center space-y-4">
<img src="/images/logo.png" alt="Mohamad Elhadidy Logo" class="max-w-xs w-full">
<p class="text-white font-semibold text-[6rem] font-delius">Coming Soon!</p>
<div class="flex space-x-6">
<a href="https://www.linkedin.com/in/muhamadelhadidy" target="_blank" aria-label="LinkedIn Profile"
class="text-white hover:text-gray-400 transition duration-300">LinkedIn</a>
<a href="https://github.com/MohamadElhadidy" target="_blank" aria-label="GitHub Profile"
class="text-white hover:text-gray-400 transition duration-300">GitHub</a>
</div>
</body>
</html>