-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
51 lines (47 loc) · 2.61 KB
/
contact.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
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Azimjon Urinov</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<header class="warm-gradient text-white p-6">
<nav class="container mx-auto flex justify-between items-center">
<h1 class="text-2xl font-bold">Azimjon Urinov</h1>
<ul class="flex space-x-4">
<li><a href="index.html" class="hover:text-yellow-200">Home</a></li>
<li><a href="about.html" class="hover:text-yellow-200">About</a></li>
<li><a href="projects.html" class="hover:text-yellow-200">Projects</a></li>
<li><a href="research.html" class="hover:text-yellow-200">Research</a></li>
<li><a href="blog.html" class="hover:text-yellow-200">Blog</a></li>
<li><a href="contact.html" class="hover:text-yellow-200">Contact</a></li>
</ul>
</nav>
</header>
<main class="container mx-auto mt-8 p-4">
<h2 class="text-3xl font-bold mb-8">Contact Me</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<section class="content-section">
<h3 class="section-title">Get in Touch</h3>
<p class="mb-4">I'm always open to new opportunities, collaborations, or just a friendly chat about technology and science. Feel free to reach out using the form below or through my social media channels.</p>
<ul class="list-disc list-inside mb-4">
<li>Email: <a href="mailto:[email protected]" class="text-blue-600 hover:underline">[email protected]</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/azimjon-mehmonali" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline">azimjon-mehmonali</a></li>
</ul>
</section>
</div>
</main>
<footer class="warm-gradient text-white p-6 mt-12">
<div class="container mx-auto text-center">
<p>© 2024 Azimjon Urinov. All rights reserved.</p>
<div class="mt-4">
<a href="mailto:[email protected]" class="hover:text-yellow-200 mr-4">Email</a>
<a href="https://www.linkedin.com/in/azimjon-mehmonali" target="_blank" rel="noopener noreferrer" class="hover:text-yellow-200">LinkedIn</a>
</div>
</div>
</footer>
</body>
</html>