-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
74 lines (69 loc) · 4.1 KB
/
about.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About 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">
<section class="content-section">
<h2 class="text-3xl font-bold mb-4">About Me</h2>
<p class="mb-4">I'm Azimjon Urinov, a computer scientist specializing in machine learning and deep learning. Currently, I'm pursuing my Bachelor's degree in Engineering at Ulsan National Institute of Science and Technology (UNIST) in South Korea.</p>
<p class="mb-4">My journey in computer science began with competitive programming in high school, where I participated in the International Olympiad in Informatics (IOI). This experience honed my problem-solving skills and sparked my interest in exploring the depths of computer science.</p>
<p class="mb-4">Now, my focus has shifted to the exciting fields of machine learning and deep learning. I'm particularly interested in natural language processing, working on adapting large language models to the Uzbek language. Additionally, I'm exploring the realms of quantum computing and IoT, always eager to learn and apply new technologies.</p>
</section>
<section class="content-section mt-8">
<h3 class="section-title">Skills</h3>
<ul class="list-disc list-inside">
<li>Machine Learning & Deep Learning</li>
<li>Natural Language Processing</li>
<li>Web Development (Django, FastAPI)</li>
<li>Python, PyTorch</li>
<li>Competitive Programming</li>
</ul>
</section>
<section class="content-section mt-8">
<h3 class="section-title">Education</h3>
<p><strong>Ulsan National Institute of Science and Technology (UNIST)</strong></p>
<p>Bachelor's degree in Engineering (August 2023 - June 2027)</p>
<p class="mt-4"><strong>Presidential School in Namangan</strong></p>
<p>High School Diploma (2019 - June 2021)</p>
</section>
<section class="content-section mt-8">
<h3 class="section-title">Achievements</h3>
<ul class="list-disc list-inside">
<li>IBM Quantum Challenge 2024 Achievement</li>
<li>IT Park Cup Winner</li>
<li>Winner of the National Informatics Olympiad</li>
<li>Bronze medal in 17 International Zhautikov Olympiad</li>
<li>First Award in The 2022 ICPC Uzbekistan Regional Contest</li>
</ul>
</section>
</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>