forked from HisarCS/6431
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1399 lines (1004 loc) · 69.9 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
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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>NoktaParantez #6431</title>
<!-- CSS FILES -->
<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=League+Spartan:wght@100;300;400;600;700&display=swap" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-icons.css" rel="stylesheet">
<link href="css/owl.carousel.min.css" rel="stylesheet">
<link href="css/owl.theme.default.min.css" rel="stylesheet">
<link href="css/tooplate-gotto-job.css" rel="stylesheet">
<!--
Tooplate 2134 Gotto Job
https://www.tooplate.com/view/2134-gotto-job
Bootstrap 5 HTML CSS Template
-->
<!-- main banner -->
</head>
<body id="top">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="images/logo.png" width="40px" height="50px" class="img-fluid logo-image">
<div class="d-flex flex-column">
<strong class="logo-text" style="color: #f39b11" >NoktaParantez #6431</strong>
<small class="logo-slogan">Idealab FabLab .)</small>
</div>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav align-items-center ms-lg-5">
<li class="nav-item">
<a class="nav-link active" href="index.html">Homepage</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#history">History</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarLightDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">Our Work</a>
<ul class="dropdown-menu dropdown-menu-light" aria-labelledby="navbarLightDropdownMenuLink">
<li><a class="dropdown-item" href="#research-development">Research & Development</a></li>
<li><a class="dropdown-item" href="#community-involvement">Community Involvement</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<section class="hero-section d-flex justify-content-center align-items-center">
<div class="section-overlay" style="background-color: #181820; opacity:0.6; height: 1200"> </div>
<div class="container">
<div class="row">
<div class="col-lg-6 col-12 mb-5 mb-lg-0">
<div class="hero-section-text mt-5">
<br>
<br>
<br>
<br>
<br>
<h6 class="text-white">Welcome to the ideaLab .)</h6>
<h1 class="hero-title text-white mt-4 mb-4">Meet NoktaParantez<br> #6431</h1>
<a href="#contact" class="custom-btn custom-border-btn btn">Want to join us? </span> </a>
</div>
</div>
<br>
<br>
</section>
<!-- main banner end -->
<section class="categories-section section-padding" id="categories-section">
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-lg-12 col-12 text-center">
<h2 class="mb-5" style="color: whitesmoke;"> Learn More about<span style="color: #f39b11"> #6431</span></h2>
</div>
<div class="col-lg-2 col-md-4 col-6">
<div class="categories-block">
<a href="#team" class="d-flex flex-column justify-content-center align-items-center h-100">
<i class="categories-icon bi-window"></i>
<small class="categories-block-title" style="color: whitesmoke;">The Team</small>
</a>
</div>
</div>
<div class="col-lg-2 col-md-4 col-6">
<div class="categories-block">
<a href="#Supporters" class="d-flex flex-column justify-content-center align-items-center h-100">
<i class="categories-icon bi-twitch"></i>
<small class="categories-block-title"style="color: whitesmoke;">Supporters</small>
</a>
</div>
</div>
<div class="col-lg-2 col-md-4 col-6">
<div class="categories-block">
<a href="#udemy" class="d-flex flex-column justify-content-center align-items-center h-100">
<i class="categories-icon bi-play-circle-fill"></i>
<small class="categories-block-title"style="color: whitesmoke;">Udemy</small>
</a>
</div>
</div>
<div class="col-lg-2 col-md-4 col-6">
<div class="categories-block">
<a href="#community-involvement" class="d-flex flex-column justify-content-center align-items-center h-100">
<i class="categories-icon bi-globe"></i>
<small class="categories-block-title"style="color: whitesmoke;">Events</small>
</a>
</div>
</div>
<div class="col-lg-2 col-md-4 col-6">
<div class="categories-block">
<a href="#contact" class="d-flex flex-column justify-content-center align-items-center h-100">
<i class="categories-icon bi-people"></i>
<small class="categories-block-title"style="color: whitesmoke;">Contact</small>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="row" height= 900 >
<div class="col-lg-3 col-12" >
<div class="about-image-wrap custom-border-radius-start">
<img src="images/abbmel.jpeg" class="about-image custom-border-radius-start img-fluid" alt="">
</div>
</div>
<div class="col-lg-6 col-12">
<div class="custom-text-block">
<h2 class="text-white mb-2">Team Mission & Vision Statement</h2>
<p class="text-white">Our mission is to inspire and engage our community, especially the FIRST community, in fostering innovation and a STEM-driven culture. We prioritize gender equality in STEM, guided by FIRST Core Values, and welcome students to participate in our projects spanning STEM and social causes .)</p>
<div class="custom-border-btn-wrap d-flex align-items-center mt-5">
<a href="#contact" class="custom-btn custom-border-btn btn me-4">Get to know us</a>
<a href="#community-involvement" class="custom-link smoothscroll">Explore Upcoming Events</a>
</div>
</div>
</div>
<div class="col-lg-3 col-14">
<div class="instagram-block">
<img src="images/tribun.jpeg" class="about-image custom-border-radius-end img-fluid" alt="">
</div>
</div>
</div>
</div>
<br>
<br>
</section>
<section id="udemy" >
<br>
<br>
<div class="container">
<div class="row">
<div class="col-lg-6 col-12">
<div class="custom-text-block custom-border-radius-start">
<h2 class="text-white mb-3">#6431 on Educational Platforms!</h2>
<p class="text-white">HisarCS on Udemy is dedicated to making STEM education accessible to all. <br>
Through our free and open-sourced educational videos, peer-to-peer mentoring, and with over 30k student followers and 42k total course enrollments, offering categorized content from beginner to advanced levels, allowing learners to progress at their own pace.</p>
<div class="d-flex mt-4">
<div class="counter-thumb">
<div class="d-flex">
<strong class="counter-number" data-from="1" data-to="30" data-speed="1000" style="color: whitesmoke;"></strong>
<strong class="counter-number-text" style="color: whitesmoke;">K</strong>
</div>
<span class="counter-text">Subscribers</span>
</div>
<div class="counter-thumb">
<div class="d-flex">
<strong class="counter-number" data-from="1" data-to="42" data-speed="1000" style="color: whitesmoke;"></strong>
<strong class="counter-number-text" style="color: whitesmoke;">K</strong>
</div>
<span class="counter-text">Total Enrolled Learners</span>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-11">
<div class="video-thumb">
<img src="images/people-working-as-team-company.jpg" class="about-image custom-border-radius-end img-fluid" alt="">
<div class="video-info">
<a href="https://www.udemy.com/user/hisarcs/" class="youtube-icon bi-youtube"></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="community-involvement" class="job-section recent-jobs-section section-padding">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-12 mb-4">
<h2 style="color: whitesmoke;">Annual Organizations by #6431</h2>
<p style="color: whitesmoke;"><strong>Over 30+ active organizations</strong> in community involvement various fields of STEM & entrepreneurship .)</p>
</div>
<div class="clearfix"></div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/sdg.jpeg" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Girls in STEM</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge" >Global Organization</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Technovation Turkey</a>
</h4>
<p> Technovation is a global non-profit that provides training and resources to young women to develop skills in the STEAM fields and encourages them to create solutions for real-world problems. Our team and Technovation ambassadors empower girls to pursue careers in these fields by supporting all participants in Turkey. </p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
All Around Turkey
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
Since 2016
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="https://hisarcs.github.io/technovation/" class="custom-btn btn ms-auto">Visit site</a>
</div>
</div>
</div>
</div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/cs9.JPG" class="job-image img-fluid" alt="marketing assistant">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Learning</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Peer-to-peer</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Hisar Coding Summit</a>
</h4>
<p> The traditional event, Hisar Coding Summit, is a highly anticipated annual event; drawing participants of all ages and experience levels for valuable STEM learning opportunities and diverse workshops, offered in both Turkish and English by the idealab students. The vibrant community of peer-to-peer learning empowers participants to explore new horizons. </p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
Hybrid Event
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
Since 2013
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="https://event.hisarcs.com/tr/" class="custom-btn btn ms-auto">Visit Site</a>
</div>
</div>
</div>
</div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/ctf.jpeg" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Cybersecurity</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Capture the Flag</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">HisarCTF</a>
</h4>
<p>HisarCTF is a cybersecurity event organized by HisarCS students with the motto "from students to anyone who wants to learn". During this 2 day event, we host unique speakers as well as interactive peer to peer workshops. In this season’s HisarCTF, we created a competitive yet exciting environment by preparing hackathons for participants.</p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
Hybrid Event
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
Since 2022
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="job-details.html" class="custom-btn btn ms-auto">Visit Site</a>
</div>
</div>
</div>
</div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/jobs/pretty-blogger-posing-cozy-apartment.jpg" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Artificial Intelligence</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Data Science</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Big Data @ Hisar</a>
</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu bibendum sapien. Pellentesque justo leo, volutpat sit amet cursus ut, vulputate et mauris. Sed efficitur auctor ullamcorper. Integer velit mauris, pellentesque non lacinia ac, placerat quis erat. Integer facilisis tristique dolor, sit amet porttitor diam venenatis non.</p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
California, USA
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
15 hours ago
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="job-details.html" class="custom-btn btn ms-auto">Apply now</a>
</div>
</div>
</div>
</div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/jobs/paper-analysis.jpg" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Programming</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Game Design</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Hisar GameJam</a>
</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu bibendum sapien. Pellentesque justo leo, volutpat sit amet cursus ut, vulputate et mauris. Sed efficitur auctor ullamcorper. Integer velit mauris, pellentesque non lacinia ac, placerat quis erat. Integer facilisis tristique dolor, sit amet porttitor diam venenatis non.</p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
Hybrid Event
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
Since 2022
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="job-details.html" class="custom-btn btn ms-auto">Apply now</a>
</div>
</div>
</div>
</div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/piwars.png" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Raspberry Pi</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Robotics</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">PiWars Turkey</a>
</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu bibendum sapien. Pellentesque justo leo, volutpat sit amet cursus ut, vulputate et mauris. Sed efficitur auctor ullamcorper. Integer velit mauris, pellentesque non lacinia ac, placerat quis erat. Integer facilisis tristique dolor, sit amet porttitor diam venenatis non. venenatis non. venenatis non. venenatis non.</p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
Hosted in Hisar School
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
Since 2019
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="https://piwars.hisarcs.com/" class="custom-btn btn ms-auto">Visit Site</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/jobs/pretty-blogger-posing-cozy-apartment.jpg" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Artificial Intelligence</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Data Science</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">GençBizz</a>
</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu bibendum sapien. Pellentesque justo leo, volutpat sit amet cursus ut, vulputate et mauris. Sed efficitur auctor ullamcorper. Integer velit mauris, pellentesque non lacinia ac, placerat quis erat. Integer facilisis tristique dolor, sit amet porttitor diam venenatis non. venenatis non. venenatis non. venenatis non.</p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
California, USA
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
15 hours ago
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="job-details.html" class="custom-btn btn ms-auto">Apply now</a>
</div>
</div>
</div>
</div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/jobs/paper-analysis.jpg" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Programming</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Game Design</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Innovation Summit</a>
</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu bibendum sapien. Pellentesque justo leo, volutpat sit amet cursus ut, vulputate et mauris. Sed efficitur auctor ullamcorper. Integer velit mauris, pellentesque non lacinia ac, placerat quis erat. Integer facilisis tristique dolor, sit amet porttitor diam venenatis non. venenatis non. venenatis non. venenatis non.</p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
Bangkok, Thailand
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
30 mins ago
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="job-details.html" class="custom-btn btn ms-auto">Apply now</a>
</div>
</div>
</div>
</div>
<!-- lmao projeler idelab -->
<div class="col-lg-4 col-md-6 col-12">
<div class="job-thumb job-thumb-box">
<div class="job-image-box-wrap">
<a href="job-details.html">
<img src="images/jobs/logo-designer-working-computer-desktop.jpg" class="job-image img-fluid" alt="">
</a>
<div class="job-image-box-wrap-info d-flex align-items-center">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level" style="color: whitesmoke;">Raspberry Pi</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Robotics</a>
</p>
</div>
</div>
<div class="job-body">
<h4 class="job-title">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Son bir etkinlik</a>
</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eu bibendum sapien. Pellentesque justo leo, volutpat sit amet cursus ut, vulputate et mauris. Sed efficitur auctor ullamcorper. Integer velit mauris, pellentesque non lacinia ac, placerat quis erat. Integer facilisis tristique dolor, sit amet porttitor diam venenatis non. venenatis non. venenatis non. venenatis non.</p>
<div class="d-flex align-items-center">
<p class="job-location">
<i class="custom-icon bi-geo-alt me-1"></i>
Melbourne, Australia
</p>
<p class="job-date">
<i class="custom-icon bi-clock me-1"></i>
2 days ago
</p>
</div>
<div class="d-flex align-items-center border-top pt-3">
<a href="job-details.html" class="custom-btn btn ms-auto">Apply now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- NEXT SECTION HONEYYY -->
<!-- own-carousel implementation (melso aglayarak cozdu-- carouseli hazır olmayan web template kullanmayın -->
<section id=team class="reviews-section " style="background-color: #181820;">
<br>
<br>
<div class="container">
<div class="row">
<center><h3 style="color: whitesmoke; font-size: xxx-large;"> The Team </h3>
<div id="owl-demo" class="owl-carousel owl-theme" style="height: auto; width: 100%; display: block; padding: 10px 10px; margin: 10px">
<div class="item"><img src="images/3.jpeg"> </div>
<div class="item"><img src="images/1.jpeg"> </div>
<div class="item"><img src="images/2.jpeg"> </div>
<div class="item"><img src="images/5.jpeg"> </div>
<div class="item"><img src="images/6.jpeg"> </div>
<div class="item"><img src="images/7.jpeg"> </div>
<div class="item"><img src="images/8.jpeg"> </div>
<div class="item"><img src="images/9.jpeg"> </div>
</div>
</center>
<!-- html-->
</div>
</div>
</section>
<br>
<section id="history">
<br>
<br>
<br>
<div class="container" >
<div class="row">
<div class="col-lg-7 col-12" >
<div class="custom-text-block custom-border-radius-start" style="background-color: #f39b11;" >
<h2 class="text-white mb-3">Past Awards & Recognitions of #6431 in FIRST .)</h2>
<p class="text-white">In 2016, we attended the Turkish Off-Season. We are dignified to have won the Rookie Inspiration Award, Winner Alliance, and Grant Award. In 2017, we attended the New York City Regional event where we were honored with the Rookie All-Star Award and granted the chance to attend the World Championship in Houston. In 2019, our team attended the Bosphorus Regional and Festival de Robotique, a Quebec City Regional event where we won the Team Spirit Award and Entrepreneurship Award, respectively. <br>
<br>
Last season, we were honored to receive the FIRST Impact Award in the Istanbul Regional, the Judges Award and the Woodie Flowers Finalist Award in the Bosphorus regional with out beloved mentor Sedat Yalcin.
</div>
</div>
<div class="col-lg-5 col-11">
<div class="video-thumb" style="background-color: #ffffff; border-radius: 0px 30px 30px 0px; ">
<img src="images/history.png" style="height: 600px; width: 500px; object-fit: contain; padding-top: 30px"class="about-image custom-border-radius-end " alt="">
</div>
</div>
</div>
<br>
<br>
<br>
</div>
</section>
<section class="job-section job-featured-section section-padding" id="research-development">
<div class="container">
<div class="row">
<div class="col-lg-6 col-12 text-center mx-auto mb-4">
<h2 style="color: whitesmoke;">Research & Development</h2>
<p><strong>Enhance technological research & learn! <br> </strong> What has 6431 been up to? Here are a few of the research & development work we have in the Hisar IdeaLab FabLab .)</p>
</div>
<div class="col-lg-12 col-12">
<div class="job-thumb d-flex">
<div class="job-image-wrap bg-white shadow-lg">
<img src="images/logos/google.png" class="job-image img-fluid" alt="">
</div>
<div class="job-body d-flex flex-wrap flex-auto align-items-center ms-4">
<div class="mb-3">
<h4 class="job-title mb-lg-0">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Lemon Robotics Kit </a>
</h4>
<div class="d-flex flex-wrap align-items-center">
<p class="job-location mb-0">
<i class="custom-icon bi-geo-alt me-1"></i>
Kuala, Malaysia
</p>
<p class="job-date mb-0">
<i class="custom-icon bi-clock me-1"></i>
10 hours ago
</p>
<p class="job-price mb-0">
<i class="custom-icon bi-cash me-1"></i>
$20k
</p>
<div class="d-flex">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level">Internship</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Freelance</a>
</p>
</div>
</div>
</div>
<div class="job-section-btn-wrap">
<a href="job-details.html" class="custom-btn btn">Apply now</a>
</div>
</div>
</div>
<div class="job-thumb d-flex">
<div class="job-image-wrap bg-white shadow-lg">
<img src="images/logos/apple.png" class="job-image img-fluid" alt="">
</div>
<div class="job-body d-flex flex-wrap flex-auto align-items-center ms-4">
<div class="mb-3">
<h4 class="job-title mb-lg-0">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">DanceAR</a>
</h4>
<div class="d-flex flex-wrap align-items-center">
<p class="job-location mb-0">
<i class="custom-icon bi-geo-alt me-1"></i>
California, USA
</p>
<p class="job-date mb-0">
<i class="custom-icon bi-clock me-1"></i>
1 day ago
</p>
<p class="job-price mb-0">
<i class="custom-icon bi-cash me-1"></i>
$90k
</p>
<div class="d-flex">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level">Senior</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Full Time</a>
</p>
</div>
</div>
</div>
<div class="job-section-btn-wrap">
<a href="job-details.html" class="custom-btn btn">Apply now</a>
</div>
</div>
</div>
<div class="job-thumb d-flex">
<div class="job-image-wrap bg-white shadow-lg">
<img src="images/logos/meta.png" class="job-image img-fluid" alt="">
</div>
<div class="job-body d-flex flex-wrap flex-auto align-items-center ms-4">
<div class="mb-3">
<h4 class="job-title mb-lg-0">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">Pomelo</a>
</h4>
<div class="d-flex flex-wrap align-items-center">
<p class="job-location mb-0">
<i class="custom-icon bi-geo-alt me-1"></i>
Tower, Paris
</p>
<p class="job-date mb-0">
<i class="custom-icon bi-clock me-1"></i>
22 hours ago
</p>
<p class="job-price mb-0">
<i class="custom-icon bi-cash me-1"></i>
$50k
</p>
<div class="d-flex">
<p class="mb-0">
<a href="job-listings.html" class="badge badge-level">Junior</a>
</p>
<p class="mb-0">
<a href="job-listings.html" class="badge">Contract</a>
</p>
</div>
</div>
</div>
<div class="job-section-btn-wrap">
<a href="job-details.html" class="custom-btn btn">Apply now</a>
</div>
</div>
</div>
<div class="job-thumb d-flex">
<div class="job-image-wrap bg-white shadow-lg">
<img src="images/logos/slack.png" class="job-image img-fluid" alt="">
</div>
<div class="job-body d-flex flex-wrap flex-auto align-items-center ms-4">
<div class="mb-3">
<h4 class="job-title mb-lg-0">
<a href="job-details.html" class="job-title-link" style="color: whitesmoke;">OutAR</a>
</h4>