-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
576 lines (563 loc) · 24.3 KB
/
index.html
File metadata and controls
576 lines (563 loc) · 24.3 KB
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="I'm Ahmed Roshdy. Frontend Developer. I enjoy coding web pages with creative ideas and beautiful designs." />
<meta name="keywords"
content="Ahmed Roshdy Ahmed-Roshdy-1,Ahmed Roshdy Website, Ahmed Roshdy Portfolio,Ahmed-Roshdy, ahmed-roshdy Website, Roshdy Portfolio, github, ahmed-roshdy, ahmed-roshdy-1.github.io, github ahmed-roshdy-1"/>
<meta name="author" content="Ahmed Roshdy, Ahmed-Roshdy-1, Ahmed-Roshdy-1" />
<title> Ahmed Roshdy </title>
<link rel="icon" href="Images/icon.png" />
<!-- Vendor Styles [Bootstrap - Boxicons - Venobox - AOS] -->
<link rel="stylesheet" href="assets/css/all.vendors.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<link
rel="stylesheet"
href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css"
/>
<!-- Main style -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Loader -->
<div class="loader" id="loader">
<img src="Images/loader.svg" alt="Loading" />
</div>
<!-- end Loader -->
<!-- Navigation -->
<header id="header">
<nav id="navigation" class="navigation">
<ul id="menu">
<li class="list active">
<a href="#home">
<span class="icon"><i class="bx bxs-home"></i></span>
<span class="title">Home</span>
</a>
</li>
<li class="list">
<a href="#education">
<span class="icon"><i class="bx bxs-user"></i></span>
<span class="list">Education</span>
</a>
</li>
<li class="list">
<a href="#projects">
<span class="icon"><i class="bx bxs-zap"></i></span>
<span class="title">Projects</span>
</a>
</li>
<li class="list">
<a href="#skills">
<span class="icon"><i class="bx bx-code"></i></span>
<span class="title">Skills</span>
</a>
</li>
<li class="list">
<a href="#contact">
<span class="icon"><i class="bx bxs-envelope"></i></span>
<span class="title">Contact</span>
</a>
</li>
</ul>
</nav>
</header>
<!-- end Navigation -->
<!-- Menu Bars -->
<div class="menu-bars" id="menu-bars">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<!-- end Menu Bars -->
<!-- Start Sections -->
<!-- Home Section -->
<section class="home" id="home">
<div class="container" data-aos="zoom-in-up" data-aos-delay="400">
<h1>Ahmed Roshdy</h1>
<p>
I'm
<span>Web Developer</span>
</p>
<p>programming is the art of transforming <br>ideas into something that facilitates human life</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/ahmed-roshdy-5bb561194/" target="_blank" class="linkedin" title="linkedin">
<i class="bx bxl-linkedin bx-tada-hover"></i>
</a>
<a href="https://www.hackerrank.com/ahmedroshdy01029?hr_r=1" target="_blank" class="hackerrank" title="hackerrank">
<i class="fab fa-hackerrank bx-tada-hover"></i>
</a>
<a href="https://github.com/Ahmed-Roshdy-1" target="_blank" class="github" title="github">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://www.youtube.com/channel/UCdjIzOGIRg-er6iN13VaFQg" target="_blank" class= "youtube" title="youtube">
<i class="bx bxl-youtube bx-tada-hover"></i>
</a>
<a href="mailto:a.roshdy7777@gmail.com" target="_blank" class="envelope" title="Send Me Email">
<i class="bx bxs-envelope bx-tada-hover"></i>
</a>
</div>
</div>
</section>
<!-- End Home Section -->
<!-- Start Education section -->
<section class="education" id="education">
<!-- Education -->
<div class="section-title">
<h1>Education</h1>
</div>
<div class="educationInfo" data-aos="fade-left" data-aos-delay="300">
<h2>Helwan University</h2>
<h3>Faculty of Computers and Artificial Intelligence</h3>
<p>4<sup>nd</sup> Year in Computer Science Department</p>
<i class="bx bxs-graduation"> </i><span>Graduated In: 2022</span>
</div>
<div class="coursesInfo" data-aos="fade-up-left" data-aos-delay="400">
<h2>Udemy Courses</h2>
<p><i class="bx bx-code-alt"></i> The Complete JavaScript Course 2021: From Zero to Expert</p>
<p><i class="bx bx-code-alt"></i> The JavaScript Course 2021: Build Modern JavaScript Projects</p>
<p><i class="bx bx-code-alt"></i> The Result-Oriented Web Developer Course - Bootcamp 2021</p>
</div>
</section>
<!-- End Enduction section -->
<section class="projects" id="projects">
<div class="section-title">
<h1>Projects</h1>
</div>
<div class="card-conteainer" data-aos="zoom-in-up" data-aos-delay="200">
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Infinty Scroll.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Infinty Scroll</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
The app fetches photos and can see these photos scrolling forever and the photos fetched from Unsplash
API.
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Infinty-Scroll" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Infinty-Scroll/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Break Out Game.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Break Out Game </h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>Game where you control a paddle with the arrow keys to bounce a ball up to break bricks.</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Breakout-Game" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Breakout-Game/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Music Player.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Music Player</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
Create music player including spinning image and song detail popup , Loop the same Song , Switch songs
and Progress bar.
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Music-Player" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Music-Player/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
</div>
<div class="card-conteainer" >
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Weather App.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Weather App</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
Weather Application using API that fetching from OpenWeatherMap and has forecasts for today and five day
after that.
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Weather-Application" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Weather-Application/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Frontend Bootstrap.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Frontend Bootstrap</h2>
<i class="bx bxl-bootstrap" id="bootstrap" title="Bootstrap"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
Front-end-Bootstrap is a simple website built using HTML, Bootstrab as a side-project to enhance my
skill in Bootstrab5.
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Front-end-Bootstrap" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Front-end-Bootstrap/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Quote Generator.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Quote Generator</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
this app Using an API to generate a random quote generator with Twitter integration and the quotes
fetched from TypeFit API.
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Quote-Generator" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Quote-Generator/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
</div>
<div class="card-conteainer" >
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Piano.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Weather App</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
it is virtual piano has : a play option(Letter Notes, Keyboard, none),autoplay option song(happy
birthday, jingle bells)and faintly play butten
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Piano" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Piano/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Tour Travel app.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Tour Travel app</h2>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p> Tour Travel App is Complete Responsive Tours and Travel Website and it is fully responsive </p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Tours-Travel-app" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Tours-Travel-app/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/15 Puzzel Game.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>15 Puzzel Gamer</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p> Fifteen Puzzles are one of the world's most recognized and popular puzzles. </p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/15-Puzzle-Game" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/15-Puzzle-Game/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
</div>
<div class="card-conteainer" >
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Joke Teller.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Joke Teller</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
the app that tell random joke about programing and when you press the button (Tell me a joke) , you will
hear a random joke.
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Joke-Teller" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Joke-Teller/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Animated-Website.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Animated Website</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
app that having animation on scroll functionality.I used Tailwind Starter Kit by Creative Tim and make
change on it .
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Animated-Website" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Animated-Website/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Picture in Picture.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Picture in Picture</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
Watch videos in a floating window so you can keep an eye on what you’re watching while interacting with
other sites.
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/picture-in-picture" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/picture-in-picture/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
</div>
<div class="card-conteainer">
<!-- Card -->
<div class="card">
<div class="front"><img src="Images/Projects/Video Player.png" sizes="20px" /></div>
<div class="back">
<div class="details">
<h2>Video Player</h2>
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css" title="CSS"></i>
<i class="bx bxl-html5" id="html" title="HTML"></i>
<p>
creating a custom video player, Add play and pause functionality, Progress bar, Volume Controls, Speed
Controls, Fullscreen functionality
</p>
<div class="icons">
<a href="https://github.com/Ahmed-Roshdy-1/Video-Player" target="_blank" title="GitHub Repo">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://ahmed-roshdy-1.github.io/Video-Player/" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Card -->
</div>
<div class="project-Reference">
<h3
>I did code all those Projects to enhance and improve my skill in
<i class="bx bxl-javascript" id="js" title="JavaScrippt"></i>
JavaScript,
<i class="bx bxl-css3" id="css" title="CSS"></i> CSS and
<i class="bx bxl-html5" id="html" title="HTML"></i> HTML
</h3>
<a href="https://github.com/Ahmed-Roshdy-1?tab=repositories" target="_blank" title="Live Demo">
<i class="bx bx-link-external bx-tada-hover"></i>
Explore All Projects
</a>
</div>
</section>
<!-- End Projects Section -->
<!-- Skills Section -->
<section class="skills" id="skills">
<div class="section-title">
<h1>Skills</h1>
</div>
<div class="tools">
<h2>programing languages and technologies</h2>
<i title="C" class="devicon-c-plain colored"></i>
<i title="Java" class="devicon-java-plain colored"></i>
<i title="Python" class="devicon-python-plain colored"></i>
<i class="bx bxl-javascript" id="js-1" title="JavaScrippt"></i>
<i class="bx bxl-css3" id="css-1" title="CSS"></i>
<i class="bx bxl-html5" id="html-1" title="HTML"></i>
<i class="bx bxl-bootstrap" id="bootstrap-1" title="Bootstrap"></i>
<i title="Sass" class="devicon-sass-plain colored"></i>
<i title="MySQL" class="devicon-mysql-plain colored"></i>
</div>
<div class="version-control">
<h2>Version Control</h2>
<i title="Git" class="devicon-git-plain colored"></i>
<i title="Github" class="devicon-github-plain colored"></i>
</div>
<div class="concept">
<h2>Concepts</h2>
<p><i class="bx bx-code-alt"></i>Data-Structure</p>
<p><i class="bx bx-code-alt"></i>Algorithms</p>
<p><i class="bx bx-code-alt"></i>Object-Oriented-Programming (OOP)</p>
</div>
</section>
<!-- Skills Section -->
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="section-title">
<h1>Contact</h1>
</div>
<div class="contactInfo">
<div class="card">
<i class="bx bxs-location-plus"></i>
<h3>Location</h3>
<p>Helwan,Cairo</p>
</div>
<a href="mailto:a.roshdy7777@gmail.com" target="_blank">
<div class="card">
<i class="bx bxs-envelope"></i>
<h3>Email Address</h3>
<p>a.roshdy7777@gmail.com</p>
</div>
</a>
<div class="card">
<i class="bx bxs-phone-call"></i>
<h3>Phone Number</h3>
<p>01062240547</p>
</div>
</div>
<div class="social-links">
<a href="https://www.linkedin.com/in/ahmed-roshdy-5bb561194/" target="_blank" class="linkedin" title="Linkedin">
<i class="bx bxl-linkedin bx-tada-hover"></i>
</a>
<a href="https://www.hackerrank.com/ahmedroshdy01029?hr_r=1" target="_blank" class="hackerrank" title="hackerrank">
<i class="fab fa-hackerrank bx-tada-hover"></i>
</a>
<a href="https://github.com/Ahmed-Roshdy-1" target="_blank" class="github" title="GitHub">
<i class="bx bxl-github bx-tada-hover"></i>
</a>
<a href="https://www.youtube.com/channel/UCdjIzOGIRg-er6iN13VaFQg" target="_blank" class="youtube" title="youtube">
<i class="bx bxl-youtube bx-tada-hover"></i>
</a>
<a href="mailto:a.roshdy7777@gmail.com" target="_blank" class="envelope" title="Send Me Email">
<i class="bx bxs-envelope bx-tada-hover"></i>
</a>
</div>
</div>
</section>
<!-- End contact Section -->
<!-- End Sections -->
<!-- Start Footer -->
<footer id="footer">
<div class="container">
Created by <strong><span class="name"> Ahmed Roshdy </span></strong>
</div>
</footer>
<!-- End Footer -->
<!-- Script connection -->
<!-- Vendor Scripts [jQuery - Form - Lazy - Bootstrap - Waypoints - IsoTop - Venobox - TypedJS - AOS] -->
<script src="assets/js/all.vendors.min.js"></script>
<script src="js/vendor.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>