-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
388 lines (355 loc) · 14 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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Basel Al-Raoush | Software Engineer Portfolio</title>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#ffffff" />
<!-- SEO Meta Tags -->
<meta
name="description"
content="Portfolio of Basel Al-Raoush, a passionate software engineer showcasing projects, skills, and achievements."
/>
<meta
name="keywords"
content="Basel Al-Raoush,Al-Raoush Basel Eyad,Basel Al Raoosh,Basel Al Raoush,software engineer,Python,Java"
/>
<meta
name="keywords"
lang="ar"
content="باسل الراعوش, باسل اياد, باسل إياد الراعوش, مهندس برمجيات, برمجة, تطوير تطبيقات, تطوير مواقع"
/>
<meta name="author" content="Basel Al-Raoush" />
<!--favicon-->
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon" />
<!-- Canonical URL -->
<link rel="canonical" href="https://al-raoushbasel.github.io/portfolio/" />
<!-- Open Graph Meta Tags -->
<meta
property="og:title"
content="Basel Al-Raoush | Software Engineer Portfolio"
/>
<meta
property="og:description"
content="Showcasing the projects and skills of Basel Al-Raoush, a passionate software engineer."
/>
<meta
property="og:image"
content="https://al-raoushbasel.github.io/portfolio//assets/images/profile.jpeg"
/>
<meta
property="og:url"
content="https://al-raoushbasel.github.io/portfolio/"
/>
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Basel Al-Raoush Portfolio" />
<meta property="og:type" content="website" />
<meta
property="og:image:alt"
content="Profile picture of Basel Al-Raoush"
/>
<meta name="revised" content="2024-12-07" />
<!-- Structured Data for Search Engines -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Basel Al-Raoush",
"url": "https://al-raoushbasel.github.io/portfolio/",
"image": "https://al-raoushbasel.github.io/portfolio/assets/images/profile.jpeg",
"description": "Portfolio of Basel Al-Raoush, a passionate software engineer showcasing projects, skills, and achievements.",
"sameAs": [
"https://github.com/Al-RaoushBasel",
"https://linkedin.com/in/basel-al-raoush-72b002291"
]
}
</script>
<!-- Styles and Fonts -->
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/a076d05399.js"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/ScrollTrigger.min.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Hero Section -->
<section id="hero" class="hero">
<div class="hero-content">
<img
src="assets/images/profile.jpeg"
alt="Basel Al-Raoush"
class="profile-pic"
/>
<h1>Hi, I'm <span class="highlight">Basel Al-Raoush</span></h1>
<p>I build efficient and reliable software solutions for the future.</p>
<div class="cta-buttons">
<a href="#projects" class="btn"
><i class="fas fa-code"></i> View Projects</a
>
<a href="assets/resume.pdf" target="_blank" class="btn"
><i class="fas fa-file-download"></i> Download Resume</a
>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<h2><i class="fas fa-user"></i> About Me</h2>
<p>
I'm a passionate software engineer with a strong foundation in
programming, problem-solving, and creating impactful solutions. I thrive
in building scalable systems and working on projects that make a
difference.
</p>
</section>
<section id="education" class="education">
<h2><i class="fas fa-graduation-cap"></i> Education</h2>
<div class="education-container">
<img src="assets/images/bme-logo.png" alt="BME Logo" class="bme-logo" />
<div class="education-details">
<h3>Budapesti Műszaki és Gazdaságtudományi Egyetem</h3>
<p>
Also known as BME, the Budapest University of Technology and
Economics is one of Europe's most prestigious universities,
providing exceptional education in engineering, technology, and
economics. I am proud to be studying software engineering here.
</p>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills">
<h2><i class="fas fa-tools"></i> Skills</h2>
<div class="skills-container">
<!-- Programming Languages -->
<h3>Programming Languages</h3>
<div class="skill"><i class="fas fa-cube"></i> C++</div>
<div class="skill"><i class="fab fa-korvue"></i> C</div>
<div class="skill"><i class="fas fa-code"></i> C#</div>
<div class="skill"><i class="fab fa-python"></i> Python</div>
<div class="skill"><i class="fab fa-java"></i> Java</div>
<div class="skill"><i class="fab fa-korvue"></i> Kotlin</div>
<div class="skill"><i class="fas fa-database"></i> SQL</div>
<div class="skill"><i class="fab fa-js-square"></i> JavaScript</div>
<div class="skill"><i class="fab fa-korvue"></i> CSS</div>
<!-- Development Tools -->
<h3>Development Tools</h3>
<div class="skill"><i class="fab fa-git-alt"></i> Git</div>
<div class="skill"><i class="fas fa-server"></i> VirtualBox</div>
<div class="skill"><i class="fas fa-bug"></i> SonarLint</div>
<div class="skill"><i class="fab fa-android"></i> Android Studio</div>
<div class="skill"><i class="fab fa-ubuntu"></i> Linux</div>
<div class="skill"><i class="fab fa-docker"></i> Docker</div>
<!-- Frameworks and Libraries -->
<h3>Frameworks and Libraries</h3>
<div class="skill"><i class="fas fa-database"></i> Room Database</div>
<div class="skill"><i class="fab fa-swagger"></i> Swagger/OpenAPI</div>
<div class="skill"><i class="fab fa-bootstrap"></i> Bootstrap</div>
<div class="skill"><i class="fab fa-react"></i> React</div>
<!-- Database Systems -->
<h3>Database Systems</h3>
<div class="skill"><i class="fas fa-database"></i> MySQL</div>
<div class="skill"><i class="fas fa-database"></i> MSSQL</div>
<div class="skill"><i class="fas fa-database"></i> MongoDB</div>
<div class="skill"><i class="fas fa-database"></i> Oracle</div>
<!-- Software Development Techniques -->
<h3>Software Development Techniques</h3>
<div class="skill">
<i class="fas fa-project-diagram"></i> Agile/Scrum
</div>
<div class="skill"><i class="fas fa-sitemap"></i> SOLID Principles</div>
<div class="skill">
<i class="fas fa-code-branch"></i> Object-Oriented Design
</div>
<div class="skill">
<i class="fas fa-pencil-ruler"></i> Design Patterns
</div>
<div class="skill"><i class="fas fa-tasks"></i> Multithreading</div>
<!-- Soft Skills -->
<h3>Soft Skills</h3>
<div class="skill">
<i class="fas fa-lightbulb"></i> Problem-Solving
</div>
<div class="skill"><i class="fas fa-users"></i> Team Collaboration</div>
<div class="skill">
<i class="fas fa-comment-alt"></i> Communication
</div>
<div class="skill"><i class="fas fa-tasks"></i> Time Management</div>
<!-- Currently Learning -->
<h3>Currently Learning</h3>
<div class="skill">
<i class="fas fa-robot"></i> AI for Game Development & object
detection
</div>
<div class="skill"><i class="fas fa-cloud"></i> Kubernetes</div>
<div class="skill"><i class="fab fa-node-js"></i> Node.js</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<h2><i class="fas fa-project-diagram"></i> Projects</h2>
<!-- MyBudgetTracker -->
<div class="project">
<h3><i class="fas fa-mobile-alt"></i> MyBudgetTracker</h3>
<p>
An Android application designed to help users track expenses across
various categories, analyze spending habits with visual charts, and
manage budgets efficiently.
</p>
<img
src="assets/images/budget-Tracker/SS1.png"
alt="MyBudgetTracker Screenshot"
class="project-thumbnail"
/>
<button class="toggle-gallery-btn" data-project="budget-Tracker">
View Images
</button>
</div>
<!-- Pong Game -->
<div class="project">
<h3><i class="fas fa-gamepad"></i> Pong Game</h3>
<p>
A retro arcade game built with Python and Pygame, featuring fast-paced
paddle and ball mechanics, dynamic AI, and multiplayer support.
</p>
<img
src="assets/images/Pong/SS1.png"
alt="Pong Game Screenshot"
class="project-thumbnail"
/>
<button class="toggle-gallery-btn" data-project="Pong">
View Images
</button>
</div>
<!-- To-Do Website -->
<div class="project">
<h3><i class="fas fa-list-alt"></i> To-Do Website</h3>
<p>
A simple and efficient task management website built using modern web
technologies. It allows users to add, edit, and delete tasks with an
interactive and responsive UI.
</p>
<img
src="assets/images/todo-website/SS1.png"
alt="To-Do Website Screenshot"
class="project-thumbnail"
/>
<button class="toggle-gallery-btn" data-project="todo-website">
View Images
</button>
</div>
<!-- Pipes in the Desert -->
<div class="project">
<h3>
<i class="fas fa-project-diagram"></i> Pipes in the Desert (Java)
</h3>
<p>
Collaborated with a team to develop a strategic game in Java,
following the full Software Development Life Cycle (SDLC).
</p>
<img
src="assets/images/pipes-in-desert/SS1.png"
alt="Pipes in the Desert Screenshot"
class="project-thumbnail"
/>
<button class="toggle-gallery-btn" data-project="pipes-in-desert">
View Images
</button>
</div>
<!-- OpenMetroMaps Contribution -->
<div class="project">
<h3>
<i class="fas fa-map-marker-alt"></i> OpenMetroMaps Contribution
(Java)
</h3>
<p>
Contributed to the OpenMetroMaps project in collaboration with BKK and
the university, implementing features for managing metro stations.
</p>
<img
src="assets/images/openmetromaps/SS1.png"
alt="OpenMetroMaps Screenshot"
class="project-thumbnail"
/>
<button class="toggle-gallery-btn" data-project="openmetromaps">
View Images
</button>
</div>
</section>
<!-- Modal -->
<div id="modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div id="modal-images"></div>
</div>
</div>
<!-- Contact Section -->
<section id="contact" class="contact">
<h2><i class="fas fa-envelope"></i> Contact Me</h2>
<form id="contact-form">
<input type="text" name="name" placeholder="Your Name" required />
<input type="email" name="email" placeholder="Your Email" required />
<textarea
name="message"
rows="5"
placeholder="Your Message"
required
></textarea>
<button type="submit"><i class="fas fa-paper-plane"></i> Send</button>
</form>
<div class="socials">
<a href="https://github.com/Al-RaoushBasel" target="_blank"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="https://linkedin.com/in/basel-al-raoush-72b002291"
target="_blank"
><i class="fab fa-linkedin"></i> LinkedIn</a
>
<a href="mailto:[email protected]"
><i class="fas fa-envelope"></i> Email</a
>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Basel Al-Raoush. All rights reserved.</p>
</footer>
<button onclick="scrollToTop()" id="back-to-top" class="btn">
↑ Back to Top
</button>
<!-- JavaScript -->
<script src="script.js"></script>
<script>
const backToTopButton = document.getElementById("back-to-top");
window.onscroll = () => {
if (
document.body.scrollTop > 100 ||
document.documentElement.scrollTop > 100
) {
backToTopButton.style.display = "block";
} else {
backToTopButton.style.display = "none";
}
};
function scrollToTop() {
window.scrollTo({ top: 0, behavior: "smooth" });
}
</script>
</body>
</html>