-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
650 lines (633 loc) · 28.1 KB
/
index.html
File metadata and controls
650 lines (633 loc) · 28.1 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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personal Portofolio - Alex Buzea</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body class="bg-light">
<nav class="shadow-sm sticky-top">
<a class="navbar-brand px-3" href="#">
<img src="img/logo.png" alt="" width="140" height="70" />
</a>
<ul class="nav-menu">
<li class="nav-item"><a class="nav-link" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#recommendations">Recommendations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<!-- home section start -->
<section class="home py-5 bg-light" id="home">
<div class="container-lg">
<div class="row min-vh-100 align-items-center align-content-center">
<div class="col-md-6 mt-5 mt-md-0 order-md-first">
<div class="home-img text-center">
<img src="img/profile.png" class="rounded-circle mw-100" alt="profile image" />
</div>
</div>
<div class="col-md-6 mt-5 mt-md-0 order-md-first">
<div class="home-text">
<p class="text-muted mb-1">Hello I'm a</p>
<!-- <h1 class="text-purple text-uppercase fs-1 fw-bold ">Web Developerr</h1> -->
<h1 class="typed-text-output d-inline font-weight-lighter text-purple fs-1 fw-bold"></h1>
<div class="typed-text d-none">
Web Developer, Front End Developer
</div>
<h2 class="fs-4 mt-2">Alex Buzea</h2>
<p class="mt-4 text-muted">
A Web Developer living in London, United Kingdom. Motivated to
learn more about upcoming tech every day.
</p>
<a href="#portfolio" class="btn px-3 mt-3">My Work</a>
</div>
</div>
</div>
</div>
</section>
<!-- home section end -->
<!-- about section start -->
<section class="about py-5" id="about">
<div class="container-lg py-4">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center">
<h2 class="fw-bold mb-5">About Me</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="about-text">
<h3 class="fs-4 mb-3">
I'm a junior developer looking to progress my skills
</h3>
<p class="text-muted">
My experinece is primarily self-taught and an 18 months apprenticeship
done recently at Which? and facilitated by Makers Academy in London.
</p>
<p class="text-muted">
My previous background is in the Tourism Industry within the
corporate environment which was followed by working for two
years in Tech Support role and then progressed to a Junior
Software Engineer role.
</p>
</div>
<!-- <div class="row text-center text-uppercase my-3">
<div class="col-sm-4">
<div class="fact-item">
<h4 class="fs-1 fw-bold">100</h4>
<p class="text-muted">Projects completed</p>
</div>
</div>
<div class="col-sm-4">
<div class="fact-item">
<h4 class="fs-1 fw-bold">90</h4>
<p class="text-muted">Happy customers</p>
</div>
</div>
<div class="col-sm-4">
<div class="fact-item">
<h4 class="fs-1 fw-bold">95</h4>
<p class="text-muted">Positive Reviews</p>
</div>
</div>
</div> -->
<div class="row">
<div class="col-lg-12 d-flex align-items-center">
<a href="CV_Alex_Buzea_2025.pdf" class="btn px-3 me-5">
Download CV
</a>
<div class="social-links">
<a href="https://fb.me/AlexBuzeaDev" class="text-dark me-2"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.linkedin.com/in/alexbuzea/" class="text-dark me-2"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-md-6 mt-5 mt-md-0">
<div class="skill-item mb-4">
<h3 class="fs-6">Html</h3>
<div class="progress" style="height: 5px">
<div class="progress-bar bg-purple" role="progressbar" style="width: 85%" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill-item mb-4">
<h3 class="fs-6">CSS/Bootstrap</h3>
<div class="progress" style="height: 5px">
<div class="progress-bar bg-purple" role="progressbar" style="width: 75%" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill-item mb-4">
<h3 class="fs-6">Javascript</h3>
<div class="progress" style="height: 5px">
<div class="progress-bar bg-purple" role="progressbar" style="width: 80%" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill-item mb-4">
<h3 class="fs-6">Typescript</h3>
<div class="progress" style="height: 5px">
<div class="progress-bar bg-purple" role="progressbar" style="width: 65%" aria-valuenow="30"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill-item mb-4">
<h3 class="fs-6">React</h3>
<div class="progress" style="height: 5px">
<div class="progress-bar bg-purple" role="progressbar" style="width: 60%" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill-item mb-4">
<h3 class="fs-6">Node Express</h3>
<div class="progress" style="height: 5px">
<div class="progress-bar bg-purple" role="progressbar" style="width: 70%" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- about section end -->
<!-- service section start -->
<section class="services py-5" id="services">
<div class="container-lg py-4">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center">
<h2 class="fw-bold mb-5">What I do</h2>
</div>
</div>
</div>
<div class="row text-center">
<div class="col-md-6 col-lg-4 mb-4">
<div class="service-item shadow-sm p-4 rounded bg-white">
<div class="icon my-3 text-purple fs-2">
<i class="fas fa-code"></i>
</div>
<h3 class="fs-5 py-2">Web Development</h3>
<p class="text-muted">
Following best practices and guidance I will aim to build
responsive mobile-first applications allowing for a better user
experience. I am also constantly learning and looking for new
ways of doing things to benefit the end user.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4">
<div class="service-item shadow-sm p-4 rounded bg-white">
<div class="icon my-3 text-purple fs-2">
<i class="fas fa-lightbulb"></i>
</div>
<h3 class="fs-5 py-2">Web Design</h3>
<p class="text-muted">
I will design websites as user friendly as possible without
compromising on aesthetics. I believe a well designed website
will make the difference between a professional looking one and
amateur one which will affect that business conversion rates.
</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4">
<div class="service-item shadow-sm p-4 rounded bg-white">
<div class="icon my-3 text-purple fs-2">
<i class="fas fa-image"></i>
</div>
<h3 class="fs-5 py-2">SEO</h3>
<p class="text-muted">
I have experience with Search Engine Optimisation (SEO) without
having to pay for Google ads but instead build an organic SEO
which will obtain a high ranking on search engine results
without paying for anything else.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- service section end -->
<!-- portofolio section start -->
<section class="portfolio py-5" id="portfolio">
<div class="container-lg py-4">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center">
<h2 class="fw-bold mb-5">Latest Works</h2>
</div>
</div>
</div>
<p><small>Please keep in mind some of the apps might take a few minutes to load due to the servers being on the
free tier and going to sleep after a period of inactivity.</small></p>
<div class="row">
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/TrustedTraders.PNG" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">Trusted Traders </h3>
<p><small>(React, Node Express, Typescript, PostgreSQL, Vitest, TanStack Query, Prisma ORM,
Bootstrap)</small></p>
<p class="mb-4">
<a href="https://trustedtraders-rn1m.onrender.com/" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/TrekTales.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">TrekTales </h3>
<p><small>(Node Express, Javascript, MongoDB, Mongoose, Bootstrap)</small></p>
<p class="mb-4">
<a href="https://trektales.onrender.com/" class="text-purple text-decoration-none" target="_blank"
rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/SpartanGym.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">Spartan Gym </h3>
<p><small>(HTML & Bootstrap)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/spartan-gym" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/SigmaIT.PNG" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">Sigma IT</h3>
<p><small>(HTML & Bootstrap)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/SigmaRepairs" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/star_wars_web.PNG" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">Star Wars Galaxy Explorer</h3>
<p><small>(React)</small></p>
<p class="mb-4">
<a href="https://alexbuzea.github.io/star_wars_galaxy_explorer_app/"
class="text-purple text-decoration-none" target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/BlogList.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">Blog List App </h3>
<p><small>(React)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/react_intro_project" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/ToDoList.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">
To do list
</h3>
<p><small>(React & Material UI)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/react_simple_to_do" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/InvoiceTracker.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">
Invoice tracker
</h3>
<p><small>(Typescript)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/typescript_to_do_code" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/countdown.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">
Countdown App
</h3>
<p><small>(React)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/Countdown" class="text-purple text-decoration-none" target="_blank"
rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/investment-calculator.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">
Investment Return Calculator
</h3>
<p><small>(React)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/Investment-app" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/project-management.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">
Project Management App
</h3>
<p><small>(React)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/Project-management-demo" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/tic-tac-toe.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">
Tic Tac Toe
</h3>
<p><small>(React)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/Tic_Tac_Toe" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/travel-picker.png" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">
Travel Picker
</h3>
<p><small>(React)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/Travel-picker" class="text-purple text-decoration-none"
target="_blank" rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="portofolio-item">
<img src="img/portfolio/AutoCentre.PNG" class="w-100 img-thumbnail" alt="portofolio item" />
<h3 class="text-capitalize fs-5 my-2">Auto Centre</h3>
<p><small>(HTML & Bootstrap)</small></p>
<p class="mb-4">
<a href="https://github.com/AlexBuzea/AutoCentre" class="text-purple text-decoration-none" target="_blank"
rel="noopener noreferrer">Live demo</a>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- portofolio section end -->
<!-- freelancer available section start -->
<section class="freelancer-available bg-purple py-5">
<div class="container-lg py-4">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<p class="text-light fs-5">Do you have any project ?</p>
<h2 class="fs-1 text-white mb-4">
I'm Available for Freelancer Projects
</h2>
<a href="#contact" class="btn btn-outline-light">Hire Me</a>
</div>
</div>
</div>
</section>
<!-- freelancer available section end -->
<!-- recommendations section start -->
<section class="recommendations py-5" id="recommendations">
<div class="container-lg py-4">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center">
<h2 class="fw-bold mb-5">Recommendations</h2>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-8 col-xl-7">
<div id="carousel1" class="carousel slide" data-bs-ride="true">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carousel1" data-bs-slide-to="0" class="active bg-primary"
aria-current="true" aria-label="Slide 1"></button>
<button class="bg-primary" type="button" data-bs-target="#carousel1" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button class="bg-primary" type="button" data-bs-target="#carousel1" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner p-1">
<!-- testi item start -->
<div class="testi-item carousel-item active bg-white shadow-sm rounded p-4 mb-5">
<div class="testi-author-info d-flex align-items-center">
<img src="img/testimonial/Angie.jfif" class="img-thumbnail rounded-circle" alt="author image" />
<div class="author ms-3">
<h3 class="fs-6 mb-1">Angie Dickinson</h3>
<p class="text-muted m-0">
Senior Marketing and Communications Manager at Growth
Company
</p>
</div>
</div>
<p class="text-muted mt-3">
Alex has attention to detail, he brings fresh ideas to every
project, and is wonderfully pleasant and courteous. He
tailors every client's needs to the maximum and no task is
ever too large. I would recommend Alex for any sales and
marketing role and recommend him to future clients for an
exceptionally high quality service.
</p>
<div class="rating text-purple">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- testi item end -->
<!-- testi item start -->
<div class="testi-item carousel-item bg-white shadow-sm rounded p-4 mb-5">
<div class="testi-author-info d-flex align-items-center">
<img src="img/testimonial/Lisa.jfif" class="img-thumbnail rounded-circle" alt="author image" />
<div class="author ms-3">
<h3 class="fs-6 mb-1">Lisa Owen</h3>
<p class="text-muted m-0">Meetings and Events Manager</p>
</div>
</div>
<p class="text-muted mt-3">
Alex is a professional, enthusiastic and dedicated team
player. It was a pleasure working with Alex for a couple of
years while at Marketing Manchester's Convention Bureau,
he's conscientious and courteous with clients and members;
easy to communicate with and fully understands the needs of
the business and service delivery. I enjoyed working with
Alex, he is an asset and great addition to any team he works
in.
</p>
<div class="rating text-purple">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- testi item end -->
<!-- testi item start -->
<div class="testi-item carousel-item bg-white shadow-sm rounded p-4 mb-5">
<div class="testi-author-info d-flex align-items-center">
<img src="img/testimonial/Emma.jfif" class="img-thumbnail rounded-circle" alt="author image" />
<div class="author ms-3">
<h3 class="fs-6 mb-1">Emma Robinson</h3>
<p class="text-muted m-0">
Conference & Events Business Development
</p>
</div>
</div>
<p class="text-muted mt-3">
I had the pleasure of working with Alex at Marketing
Manchester. He is a friendly and conscientious team member
with great integrity and a real passion for his work. He is
keen to learn with an inquisitive mind; and has great
customer service skills with a proven ability to build
relationships and manage key accounts. Alex would be a real
asset to any team he works in.
</p>
<div class="rating text-purple">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- testi item end -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- testimonials section end -->
<!-- contact section start -->
<section class="contact py-5" id="contact">
<div class="container-lg py-4">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center">
<h2 class="fw-bold mb-5">Contact Me</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5">
<div class="contact-item d-flex mb-3">
<div class="icon fs-4 text-purple">
<i class="fas fa-envelope"></i>
</div>
<div class="text ms-3">
<h3 class="fs-5">Email</h3>
<p class="text-muted m-0">alex.buzea.dev@gmail.com</p>
</div>
</div>
<div class="contact-item d-flex mb-3">
<div class="icon fs-4 text-purple">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="text ms-3">
<h3 class="fs-5">Location</h3>
<p class="text-muted m-0">London, United Kingdom</p>
</div>
</div>
</div>
<div class="col-md-7">
<div class="contact-form">
<form action="https://formsubmit.co/94aadd32f820063e15a4d7b65b0d66e9" method="POST">
<div class="row">
<div class="col-lg-6 mb-4">
<input type="text" placeholder="Your Name"
class="form-control form-control-lg fs-6 border-0 shadow-sm" name="Name" id="" />
</div>
<div class="col-lg-6 mb-4">
<input type="text" placeholder="Your Email"
class="form-control form-control-lg fs-6 border-0 shadow-sm" name="Email" id="" />
</div>
</div>
<div class="row">
<div class="col-lg-12 mb-4">
<input type="text" placeholder="Subject" class="form-control form-control-lg fs-6 border-0 shadow-sm"
name="Subject" id="" />
</div>
</div>
<div class="row">
<div class="col-lg-12 mb-4">
<textarea rows="5" placeholder="Your Message"
class="form-control form-control-lg fs-6 border-0 shadow-sm" name="Message" id=""></textarea>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<button type="submit" class="btn px-3">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- contact section end -->
<!-- footer start -->
<footer class="footer border-top py-4">
<div class="container-lg">
<div class="row">
<div class="col-lg-12">
<p class="m-0 text-center text-muted">© 2025 Alex Buzea</p>
</div>
</div>
</div>
</footer>
<!-- footer end -->
<script src="js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.5/typed.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>