-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
340 lines (307 loc) · 16.1 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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kausar Ahmed Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="x-icon" href="assets/logo.png">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!----Navigation bar start---->
<div class="logo">
<a href="#home"><img src="assets/logo.png"></a>
</div>
<nav class="navbar">
<ul class="nav">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">projects</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#featured">Featured</a></li>
<li><a href="#">blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!----website cover start---->
<div class="cover" id="home">
<div class="cover-content">
<h1>Kausar <span> Ahmed</span></h1>
<h3>Aspiring Machine Learning Engineer || <span>CSE@ULAB</span></h3>
</div>
</div>
<!----About section start---->
<div class="about" id="about">
<div class="about-content">
<img src="assets/photo.jpg" width="450vh">
<div class="about-text">
<h2>About Me</h2>
<h6>Short bio</h6>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat excepturi possimus suscipit
obcaecati cum necessitatibus ipsa cumque placeat saepe delectus harum ullam aperiam dolorem,
cupiditate impedit. Nisi facere fugit natus. Lorem ipsum dolor, sit amet consectetur adipisicing
elit. Fuga dignissimos doloribus quod quia accusamus reiciendis itaque quas iste repudiandae. Quae,
natus ratione! Recusandae omnis itaque repellat ullam sequi veritatis placeat. Lorem ipsum dolor sit
amet consectetur adipisicing elit. Incidunt corrupti a inventore cumque consequuntur dignissimos
necessitatibus iste, magnam sunt eligendi dolorum officiis possimus expedita at! Sed, blanditiis.
</p>
<a class="cv" href="#" target="_blank"><i class="fa fa-download"></i>
Download CV</a>
</div>
</div>
</div>
<!----About section end---->
<!-----projects section start----------->
<div class="project" id="projects">
<div class="section-title">
<hr>
<h3> Projects </h3>
<hr>
</div>
<div class="grid-container">
<!-- Project 1 -->
<div class="project-card">
<div class="card-img">
<img src="assets/schedulumos.png" alt="">
</div>
<div class="project-details">
<h4>ScheduLumos</h4>
<p>
This web application designed to simulate and visualize CPU scheduling algorithms. This tool is
particularly useful for students and educators in computer science to
learn the behavior of the algorithms. <br> <br>
<b>Frontend:</b> HTML5, CSS3, JavaScript <br>
<b>Backend:</b> Python, Flask
</p>
<a href="https://cpuscheduler.vercel.app/" target="_blank" title="Live site">link <i
class="fa fa-link"></i></a>
<a href="https://github.com/kausaraahmed/scheduLumos" target="_blank"
title="Project Repository">GitHub <i class="fab fa-github"></i></a>
</div>
</div>
<!-- Project 1 end -->
<!-- Project 2 -->
<div class="project-card">
<div class="card-img">
<img src="assets/routinio.png" alt="">
</div>
<div class="project-details">
<h4>GenRoutine</h4>
<p>
Routine Generator: This is a web application designed to assist users in creating and managing
personalized routines for academic purposes. <br> <br>
<b>Frontend:</b> HTML5, CSS3, JavaScript <br>
<b>Backend:</b> Python, Flask
</p>
<a href="https://genroutine.vercel.app/" target="_blank" title="Site Link">link <i
class="fa fa-link"></i></a>
<a href="https://github.com/kausaraahmed/genroutine" target="_blank"
title="Project Repository">GitHub <i class="fab fa-github"></i></a>
</div>
</div>
<!-- Project 2 end -->
<!-- Project 3 -->
<div class="project-card">
<div class="card-img">
<img src="assets/klashcard.png" alt="">
</div>
<div class="project-details">
<h4>KlashCard</h4>
<p>
Klashcard is a versatile flashcard application designed to help users practice vocabulary. While
this example demonstrates English to Bangla translation, the application can be easily modified
to support anyvother types of learning flashcards. <br> <br>
<b>Frontend:</b> CustomTkinter (Python) <br>
<b>Backend:</b> Python
</p>
<a href="https://drive.google.com/file/d/1cN3Wk2WoJffpyJ8K0vXlqyoW7tuqo6JA/view?usp=sharing"
target="_blank" title="Site Link">exe file <i class="fa fa-download"></i></a>
<a href="https://github.com/kausaraahmed/klashcard" target="_blank"
title="Project Repository">GitHub <i class="fab fa-github"></i></a>
</div>
</div>
<!-- Project 3 end -->
<!-- Project 4 -->
<div class="project-card">
<div class="card-img">
<img src="assets/tic-tactoe.png" alt="">
</div>
<div class="project-details">
<h4>Tic-Tac-Toe</h4>
<p>
Klashcard is a versatile flashcard application designed to help users practice vocabulary. While
this example demonstrates English to Bangla translation, the application can be easily modified
to support anyvother types of learning flashcards. <br> <br>
<b>Language:</b> Python <br>
</p>
<a href="https://github.com/kausaraahmed/CS50P-Final-Project" target="_blank"
title="Project Repository">GitHub <i class="fab fa-github"></i></a>
</div>
</div>
<!-- Project 4 end-->
</div>
<button class="showall-btn" title="Visit GitHub">Show All <i class="fab fa-github"></i></button>
</div>
<!-----projects section end----------->
<!-- ---fratured section start----------->
<div class="featured" id="featured">
<div class="section-title">
<hr>
<h3> Featured </h3>
<hr>
</div>
<div class="featured-container">
<!-- featured 1 -->
<div class="featured-card" id="f1">
<img src="assets/GH Cert.png" class="view">
<div class="card-content">
<h3><b>GitHub Foundations Certification 🎖️</b></h3>
<p>
Passed the certification 𝗲𝘅𝗮𝗺! This exam dives deep into understanding of the foundational
topics, products, and concepts related to collaborating, contributing, and working on GitHub.
This exam preparation
helped me to grasp the key concepts and contributing to the open-source community.
</p>
<a class="card-btn"
href="https://www.linkedin.com/posts/kausaraahmed_%F0%9D%97%A3%F0%9D%97%AE%F0%9D%98%80%F0%9D%98%80%F0%9D%97%B2%F0%9D%97%B1-%F0%9D%98%81%F0%9D%97%B5%F0%9D%97%B2-github-%F0%9D%97%99%F0%9D%97%BC%F0%9D%98%82%F0%9D%97%BB%F0%9D%97%B1%F0%9D%97%AE%F0%9D%98%81-activity-7246575417472524288-kpY_?utm_source=share&utm_medium=member_desktop"
target="_blank">Details</a>
</div>
</div>
<!-- featured 2 -->
<div class="featured-card" id="f2">
<img src="assets/alp.jpg" class="view">
<div class="card-content">
<h3><b>Aspire Leadership Program'2024 - Cycle 2</b></h3>
<p>A fully funded leadership development program, supported by Harvard University and developed by
Harvard Business School faculty, aimed to prepare first generation college students worldwide to
be leaders and reach their full potential. Activities are focused on personal and professional
growth and development, immersive learning, and leadership development.</p>
<a class="card-btn" href="https://www.aspireleaders.org/program/aspire-leaders/"
target="_blank">more about ALP</a>
</div>
</div>
<!-- featured 3 -->
<div class="featured-card" id="f3">
<img src="assets/cip.jpg" class="view">
<div class="card-content">
<h3><b>Stanford University's Code In Place: Introduction to Python</b></h3>
<p>Completed the Stanford University: Code In Place course, an 8-week long online Introduction to
Python program from April 22 to June 16, 2024. This course covers the first half of Stanford's
introductory hashtag#CS106A. <br>
This course includes fundamentals such as control flow, loops, conditionals, variables,
graphics, lists, dictionaries, and projects involving Karel the Robot, console programming, and
graphics. <br> <br>
My final project: <b>Klashcard</b> <br>
Github: <a class="final-p" href="https://github.com/kausaraahmed/klashcard">Project Repository
<i class="fa fa-link"></i></a> <br>
Verify: <a class="final-p"
href="https://codeinplace.stanford.edu/cip4/certificate/ad1fsd">here</a> <br>
</p>
<a class="card-btn" href="https://codeinplace.stanford.edu/" target="_blank">more about CIP</a>
</div>
</div>
<!-- featured 4 -->
<div class="featured-card" id="f4">
<img src="assets/Career Essentials in Generative AI by Microsoft and LinkedIn.jpg" class="view">
<div class="card-content">
<h3><b>Career Essentials in Generative AI by Microsoft and LinkedIn</b></h3>
<p>Completed the the larning path, passed the final exam and received professional certificate. <br>
This series of course, uncovers the essential skills to incorporate generative AI into career. I
learned the core concepts of artificial intelligence and how generative AI functions. Also gives
a understanding of generative AI models and explored the ethical considerations involved. </p>
<a class="card-btn" href="https://codeinplace.stanford.edu/" target="_blank">Details</a>
</div>
</div>
<!-- featured 5 -->
<div class="featured-card" id="f3">
<img src="assets/cs50p.png" class="view">
<div class="card-content">
<h3><b>CS50P: Introduction to Programming with Python</b></h3>
<p>CS50P is CS50's Introduction to Programming with Python, including nine problem sets and one
final project. Topic includes functions, arguments, and return values, variables and types;
conditions and Boolean expressions; loops; and objects and methods. Plus exceptions, file I/O,
and libraries.</p>
<a class="card-btn"
href="https://www.harvardonline.harvard.edu/course/cs50s-introduction-programming-python"
target="_blank">more about CS50P</a>
</div>
</div>
<!-- Modal structure -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="imgInModal">
</div>
</div>
<a class="more-featured" href="https://www.linkedin.com/in/kausaraahmed/details/certifications/"
target="_blank">See More on LinkedIn
<i class="fab fa-linkedin"></i></a>
</div>
<!----Education section start---->
<div class="education" id="education">
<div class="section-title">
<hr>
<h3> Education </h3>
<hr>
</div>
<div class="edu-box">
<div class="edu-card">
<h4><i class="fa fa-graduation-cap"></i> University</h4>
<p><b>University of Liberal Arts Bangladesh(ULAB)</b><br><br>Bsc in Computer science and Engineering
(CSE)<br>2022-present<br>3.86 out of 4</p>
</div>
<div class="edu-card">
<h4><i class="fa fa-university"></i> College</h4>
<p><b>Cantonment College Jashore</b><br><br>HSC (Science)<br>2018-2020<br>5.00 out of 5.00
</p>
</div>
</div>
</div>
<!----Education section end---->
<!------contact start--------->
<div class="contact" id="contact">
<div class="section-title">
<hr>
<h3> Contact </h3>
<hr>
</div>
<p>Say hello</p>
<div class="last-row">
<div class="conbox">
<a href="https://www.facebook.com/kausar2nd" target="_blank" title="Facebook">
<div class="concard">
<i class="fab fa-facebook-f"></i>
</div>
</a>
<a href="mailto:[email protected]" target="_blank" title="email">
<div class="concard">
<i class="fa fa-envelope"></i>
</div>
</a>
<a href="https://github.com/kausaraahmed" target="_blank" title="GitHub">
<div class="concard">
<i class="fab fa-github"></i>
</div>
</a>
<a href="https://www.linkedin.com/in/kausaraahmed/" target="_blank" title="LinkedIn">
<div class="concard">
<i class="fab fa-linkedin"></i>
</div>
</a>
</div>
<a href="#home">
<div class="toTop" title="Go to top"><i class="fas fa-angle-double-up"></i></div>
</a>
</div>
<span class="copyright">© KAUS4R 2024</span>
</div>
<script src="script.js"></script>
</body>
</html>