-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
325 lines (287 loc) · 8.47 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Shiam - AI Enthusiast</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Official website of Shiam (S.M. Mohiuddin Khan Shiam), an AI Enthusiast currently working on AI projects and learning advanced technologies."
/>
<meta name="keywords" content="Shiam, AI, ML, Quantum Computing, Blockchain, NLP, Bioinformatics, IoT, Ethical Hacking, HPC, BRAC University" />
<meta name="author" content="S.M. Mohiuddin Khan Shiam" />
<!-- Google Fonts (Optional) -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', sans-serif;
color: #333;
background-color: #f7f7f7;
}
/* Header & Navigation */
header {
background-color: #6200ee;
color: #fff;
padding: 1rem;
}
header nav {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1000px;
margin: 0 auto;
}
header nav .logo {
font-weight: 600;
font-size: 1.4rem;
}
header nav ul {
list-style: none;
display: flex;
gap: 1rem;
}
header nav a {
color: #fff;
text-decoration: none;
font-weight: 400;
transition: opacity 0.3s ease;
}
header nav a:hover {
opacity: 0.7;
}
/* Hero Section */
.hero {
text-align: center;
background: linear-gradient(45deg, #6200ee, #3700b3);
color: #fff;
padding: 4rem 1rem;
}
.hero h1 {
font-size: 2rem;
margin-bottom: 1rem;
font-weight: 600;
}
.hero p {
font-size: 1.1rem;
max-width: 700px;
margin: 0.5rem auto;
line-height: 1.6;
}
/* About Section */
.about {
max-width: 1000px;
margin: 3rem auto;
padding: 0 1rem;
}
.about h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
font-weight: 600;
text-align: center;
}
.about p {
font-size: 1rem;
line-height: 1.6;
margin: 0.5rem 0;
text-align: center;
}
.about blockquote {
font-style: italic;
color: #666;
text-align: center;
margin-top: 1.5rem;
}
/* Interests/Skills Section */
.interests {
max-width: 1000px;
margin: 3rem auto;
padding: 0 1rem;
}
.interests h2 {
text-align: center;
margin-bottom: 1rem;
font-size: 1.8rem;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1rem;
margin-top: 2rem;
}
.skill-card {
background: #fff;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
padding: 1rem;
text-align: center;
transition: transform 0.3s ease;
}
.skill-card:hover {
transform: translateY(-5px);
}
.skill-card h3 {
font-weight: 600;
margin-bottom: 0.5rem;
}
/* Contact Section */
.contact {
max-width: 1000px;
margin: 3rem auto;
padding: 0 1rem;
text-align: center;
}
.contact h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.contact-icons {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
margin-top: 2rem;
}
.contact-icons a {
color: #6200ee;
text-decoration: none;
font-weight: 500;
}
.contact-icons a:hover {
opacity: 0.7;
}
/* Footer */
footer {
text-align: center;
background-color: #6200ee;
color: #fff;
padding: 1rem;
margin-top: 3rem;
}
footer p {
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
header nav .logo {
font-size: 1.2rem;
}
.hero h1 {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<!-- ========================= HEADER ========================= -->
<header>
<nav>
<div class="logo">Shiam</div>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#interests">Interests</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- ========================= HERO SECTION ========================= -->
<section class="hero">
<h1>Hi, I'm Shiam!</h1>
<p>
AI Enthusiast & Researcher — Currently working on AI Projects. Passionate
about discovering cutting-edge technologies to make a positive impact.
</p>
</section>
<!-- ========================= ABOUT SECTION ========================= -->
<section id="about" class="about">
<h2>About Me</h2>
<p>
I'm <strong>S.M. Mohiuddin Khan Shiam</strong>, a Computer Science graduate from
<strong>BRAC University</strong>. I'm currently delving into various advanced
technologies, including <em>Quantum Computing</em>, <em>Quantum Machine Learning</em>,
<em>Blockchain</em>, <em>Natural Language Processing</em>, <em>Bioinformatics</em>,
<em>IoT</em>, <em>Software Engineering</em>, <em>Ethical Hacking</em>, and <em>High-Performance Computing</em>.
</p>
<p>
Feel free to ask me about <strong>AI</strong> or <strong>Machine Learning</strong>.
My goal is to explore the frontiers of technology and harness the power of
AI to solve real-world problems.
</p>
<blockquote>
“Any sufficiently advanced technology is indistinguishable from magic.”<br>
— Arthur C. Clarke
</blockquote>
</section>
<!-- ========================= INTERESTS/SKILLS SECTION ========================= -->
<section id="interests" class="interests">
<h2>Areas of Interest</h2>
<div class="skills-grid">
<div class="skill-card">
<h3>Artificial Intelligence (AI)</h3>
<p>Expertise in building intelligent systems and exploring new AI paradigms.</p>
</div>
<div class="skill-card">
<h3>Machine Learning</h3>
<p>Working with ML models, data preprocessing, and advanced techniques.</p>
</div>
<div class="skill-card">
<h3>Quantum Computing</h3>
<p>Studying quantum algorithms and potential applications in AI/ML.</p>
</div>
<div class="skill-card">
<h3>Blockchain</h3>
<p>Exploring decentralized applications and secure data management.</p>
</div>
<div class="skill-card">
<h3>Natural Language Processing</h3>
<p>Passionate about language models, text processing, and language understanding.</p>
</div>
<div class="skill-card">
<h3>Bioinformatics</h3>
<p>Working on computational approaches to solve biological challenges.</p>
</div>
<div class="skill-card">
<h3>IoT</h3>
<p>Integrating hardware and software for connected systems and devices.</p>
</div>
<div class="skill-card">
<h3>Ethical Hacking</h3>
<p>Interested in cybersecurity, vulnerability assessments, and penetration testing.</p>
</div>
<div class="skill-card">
<h3>High-Performance Computing</h3>
<p>Leveraging massive parallelism to tackle complex computational tasks.</p>
</div>
</div>
</section>
<!-- ========================= CONTACT SECTION ========================= -->
<section id="contact" class="contact">
<h2>Contact</h2>
<p>Interested in collaborating or discussing AI, ML, or other emerging tech? Let's connect!</p>
<div class="contact-icons">
<a href="mailto:contact.shiam@gmail.com" target="_blank">Email: contact.shiam@gmail.com</a>
<a href="https://github.com/mohiuddin-khan-shiam" target="_blank">GitHub: mohiuddin-khan-shiam</a>
<a href="https://www.linkedin.com/in/s-m-mohiuddin-khan-shiam/" target="_blank">LinkedIn: s-m-mohiuddin-khan-shiam</a>
</div>
</section>
<!-- ========================= FOOTER ========================= -->
<footer>
<p>© <span id="year"></span> Shiam - All Rights Reserved.</p>
</footer>
<script>
// Simple script to update the footer year automatically
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>