-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
1265 lines (1114 loc) · 53.6 KB
/
index.php
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
<?php
session_start();
session_unset();
session_destroy();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Prof. Dux: Personalized AI-Powered Learning Facilitator</title>
<meta
content="Prof. Dux is an AI-powered learning platform that provides personalized learning experiences for students of all levels. With Prof. Dux, students can learn at their own pace and focus on the topics that are most relevant to them"
name="description">
<meta
content="personalized learning, AI-powered learning, online learning, distance learning, self-paced learning, adaptive learning, gamified learning, virtual instructor, collaboration tools"
name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/vendor/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Shuffle
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/bootstrap-3-one-page-template-free-shuffle/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<div id="heroCarousel" class="carousel slide carousel-fade" data-bs-ride="carousel" data-bs-interval="5000">
<ol class="carousel-indicators" id="hero-carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<!-- Slide 1 -->
<div class="carousel-item active" style="background-image: url(assets/img/slide/slide-1.jpg);">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Welcome to <span
style="background-color: blue;">dux</span></h2>
<p class="animate__animated animate__fadeInUp">The Near East University AI Learning Facilitator</p>
<a href="auth.php" class="btn-get-started animate__animated animate__fadeInUp scrollto">Get Started</a>
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item" style="background-image: url(assets/img/slide/slide-2.jpg);">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Prof. Dux</h2>
<p class="animate__animated animate__fadeInUp">Helping you Unlock Your Potential and Excel in a
Personalized Learning Journey.</p>
<a href="auth.php" class="btn-get-started animate__animated animate__fadeInUp scrollto">Get Started</a>
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="carousel-item" style="background-image: url(assets/img/slide/slide-3.jpg);">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Meet AI in Higher Education</h2>
<p class="animate__animated animate__fadeInUp">Engage, Learn, and Succeed in an Interactive and
Inclusive Learning Environment.</p>
<a href="#about" class="btn-get-started animate__animated animate__fadeInUp scrollto">Get Started</a>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#heroCarousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bi bi-chevron-double-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#heroCarousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bi bi-chevron-double-right" aria-hidden="true"></span>
</a>
</div>
</div>
</section><!-- End Hero -->
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<div class="logo">
<h1 class="text-light"><a href="index.html"><span><img src="assets/dux_logo.png" alt="dux_logo"
style="height:80px" srcset=""></span></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Features</a></li>
<li><a class="nav-link scrollto" href="#news">News</a></li>
<li><a class="nav-link scrollto" href="forum.html">Forum</a></li>
<!-- <li><a class="nav-link scrollto" href="#portfolio">Portfolio</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#team">Team</a></li> -->
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<main id="main">
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>About</h2>
<p align="justify">Prof. DUX is an AI education facilitator developed by the Institute of Artificial
Intelligence and Robotics at Near East University. It individualizes education for each student by
leveraging AI-driven algorithms to analyze learning patterns, pace, and strengths. Prof. DUX fosters
engagement and communication through real-time participation in online discussions and chats, promoting
active learning. It employs AI-driven assessment tools that evaluate not only factual recall but also
critical thinking and problem-solving skills.</p>
</div>
<div class="row">
<div class="col-lg-6">
<img src="assets/img/about.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>AI-Enabled Learning: <strong>Ensuring Success for All Students</strong></h3>
<p align="justify" class="fst-italic">
Prof. DUX's effectiveness relies on seamless integration with existing resources,
</p>
<p align="justify">
utilizing an extensive repository of educational materials to enhance comprehension and augment
coursework. By performing real-time analysis of performance statistics, it can identify areas where
students are struggling and promptly respond with appropriate interventions, ensuring that students have
the necessary tools and guidance to overcome challenges and achieve sustainable success in their learning
journey.
</p>
<!-- <div class="skills-content">
<div class="progress">
<span class="skill">HTML <i class="val">100%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">CSS <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">JavaScript <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Photoshop <i class="val">55%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div> -->
</div>
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= Counts Section ======= -->
<section class="counts section-bg">
<div class="container">
<div class="row no-gutters">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-play-circle"></i>
<span data-purecounter-start="0" data-purecounter-end="12" data-purecounter-duration="1"
class="purecounter"></span>
<p align="justify"><strong>Video Lectures:</strong> Every concept is introduced with the aid of a video
lecture</p>
<a href="#">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="3" data-purecounter-duration="1"
class="purecounter"></span>
<p align="justify"><strong>Information Sources:</strong> Tutoring is based on textbooks, websources and
chatGPT</p>
<a href="#">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-bar-chart"></i>
<span data-purecounter-start="0" data-purecounter-end="14" data-purecounter-duration="1"
class="purecounter"></span>
<p align="justify"><strong>Performance Statistics:</strong> Statistics per lecture and per semester are
just clicks away</p>
<a href="#">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-people"></i>
<span data-purecounter-start="0" data-purecounter-end="1000" data-purecounter-duration="1"
class="purecounter"></span>
<p align="justify"><strong>Live chat</strong> Chat with Prof. DUX and other students in a Live chatroom
</p>
<a href="#">Find out more »</a>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Our Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Features</h2>
<p align="justify">Prof. Dux prepares students for the workforce by providing them with the skills and
knowledge they need to succeed. For example, it can offer courses in coding, data science, and other
in-demand skills. Additionally, it can provide students with opportunities to collaborate with industry
professionals and complete real-world projects. This can help students gain the experience they need to land
a job after graduation</p>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box">
<div class="icon"><i class="bi bi-person"></i></div>
<h4 class="title"><a href="">Implementing Personalized Learning</a></h4>
<p class="description">Tailor-made education for every student's unique needs, leveraging AI-driven
algorithms to analyze learning patterns, pace, and strengths.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box">
<div class="icon"><i class="bi bi-chat-dots"></i></div>
<h4 class="title"><a href="">Enhancing Engagement and Communication</a></h4>
<p class="description"> Foster active learning through real-time participation in online discussions and
chats, transcending the constraints of a physical classroom</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box">
<div class="icon"><i class="bi bi-check2-square"></i></div>
<h4 class="title"><a href="">Automated Assessment</a></h4>
<p class="description">Move beyond traditional exams with AI-driven assessment tools that evaluate
critical thinking and problem-solving skills, preparing well-rounded graduates</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box">
<div class="icon"><i class="bi bi-link"></i></div>
<h4 class="title"><a href="">Seamless Integration of Resources</a></h4>
<p class="description">Utilize an extensive repository of educational materials to enhance comprehension
and augment coursework, ensuring a rich and comprehensive learning experience</p>
</div>
</div>
</div>
<div class="row">
<div class="section-title">
<h2>Tutorial</h2>
</div>
<p>Click on the following to download the manual on getting started with dux</p>
<a href="uploads/dux_tutor.pdf" download>
<button style="background-color: #007bff; color: #fff; padding: 10px 20px; font-size: 20px; border: none; border-radius: 5px; cursor: pointer;">
<i class="fas fa-file-download" style="margin-right: 10px;"></i> Download PDF
</button>
</a>
</div>
</div>
</section><!-- End Our Services Section -->
<!-- ======= More Services Section ======= -->
<section class="more-services section-bg">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="card">
<img src="assets/img/more-service-1.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><a href="">Real-Time Adjustments</a></h5>
<p align="justify" class="card-text">Prof. DUX allows for real-time adjustments based on feedback,
identifying areas where students are struggling and promptly responding with appropriate interventions
</p>
<a href="#" class="btn">Explore more</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="card">
<img src="assets/img/more-service-2.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><a href="">Pedagogical Adaptability</a></h5>
<p align="justify" class="card-text">Prof. DUX's blend of technical acumen and pedagogical adaptability
ensures that students have the necessary tools and guidance to overcome challenges and achieve
sustainable success in their learning journey</p>
<a href="#" class="btn">Explore more</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="card">
<img src="assets/img/more-service-3.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><a href="">Comprehensive Learning Experience</a></h5>
<p align="justify" class="card-text">Prof. DUX utilizes an extensive repository of educational materials
to enhance comprehension and augment coursework, contributing to an enriched learning experience</p>
<a href="#" class="btn">Explore more</a>
</div>
</div>
</div>
</div>
<div class="row" style="margin-top: 50px; background-color: aquamarine;">
<div class="section-title">
<h2>Tutorial</h2>
</div>
<p>Click on the following to download the manual on getting started with dux</p>
<a href="uploads/dux_tutorial.pdf" download>
<button style="background-color: #007bff; color: #fff; padding: 10px 20px; font-size: 20px; border: none; border-radius: 5px; cursor: pointer;">
<i class="fas fa-file-download" style="margin-right: 10px;"></i> Download PDF
</button>
</a>
</div>
</div>
</section><!-- End More Services Section -->
<!-- ======= Info Box Section ======= -->
<section class="info-box py-0">
<div class="container-fluid">
<div class="row">
<div class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch order-2 order-lg-1">
<div class="content">
<h3>Data Science <strong>and Machine Learning Technologies</strong></h3>
<p align="justify">
Prof DUX uses these technologies to analyze student data and identify patterns. This data can be used to
improve the learning experience by identifying areas where students need improvement and making
adjustments to the curriculum accordingly.
</p>
</div>
<div class="accordion-list">
<ul>
<li>
<a data-bs-toggle="collapse" class="collapse" data-bs-target="#accordion-list-1"><span>01</span>
Improved Retention <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-1" class="collapse show" data-bs-parent=".accordion-list">
<p align="justify">
Prof. Dux can improve retention by making learning more engaging and effective. For example, Prof.
Dux uses spaced repetition techniques to help students remember information for longer periods of
time. Additionally, Prof. Dux can use gamification techniques to make learning more fun and
rewarding. This can help students stay motivated and engaged in their studies, which can lead to
improved retention.
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#accordion-list-2" class="collapsed"><span>02</span>
Real-Time Feedback <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-2" class="collapse" data-bs-parent=".accordion-list">
<p align="justify">
Prof. Dux can provide students with real-time feedback on their work, which can help them identify
areas where they need improvement. This feedback can be delivered through a variety of channels,
such as quizzes, graded assignments, and one-on-one tutoring sessions
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#accordion-list-3" class="collapsed"><span>03</span>
Cost-effective solution <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-3" class="collapse" data-bs-parent=".accordion-list">
<p align="justify">
Prof. Dux is a cost-effective way to deliver education, as it can reduce the need for traditional
classroom instruction. This can save schools money, and it can also make education more accessible
to students who live in rural areas or who cannot afford to attend a traditional college or
university
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-5 align-items-stretch order-1 order-lg-2 img"
style="background-image: url(assets/img/info-box.jpg);"> </div>
</div>
</div>
</section><!-- End Info Box Section -->
<!-- ======= Our Portfolio Section ======= -->
<!-- <section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Our Portfolio</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<iframe src="https://drive.google.com/file/d/1Jp9LrVcuUCoaSaRHhTbH1eR_sb2fdzoS/preview" frameborder="0" allowfullscreen></iframe>
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 2</h4>
<p>Web</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
</div>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>End Our Portfolio Section -->
<!-- PORTFOLIO -->
<section id="demos" class="demos">
<div class="section-title">
<h2>DEMO VIDEOS</h2>
<p>Find here a preview of DUX learning management system and interaction with Prof. DUX</p>
</div>
<div class="row" style="padding: 30px;">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Course creation</h5>
<iframe src="https://drive.google.com/file/d/1Jp9LrVcuUCoaSaRHhTbH1eR_sb2fdzoS/preview" frameborder="0"
allowfullscreen object-fit="cover" width="380" , height="250" allow="autoplay"></iframe>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Course Info update</h5>
<iframe src="https://drive.google.com/file/d/1ZGfHtJUse9kzt2nv7E3pQfpsKOVK_Niq/preview" width="380"
height="250" allow="autoplay"></iframe>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Course Management</h5>
<iframe src="https://drive.google.com/file/d/1cOqEI0s8szoHrDAdzIg4owt3E8nQocMp/preview" width="380"
height="250" allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
<div class="row" style="padding:30px">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Topic focus</h5>
<iframe src="https://drive.google.com/file/d/1FtfcJn8lqA-s03KlH6F3bc3_j34Y2u8V/preview" width="380"
height="250" allow="autoplay"></iframe>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Textbook-based responses</h5>
<iframe src="https://drive.google.com/file/d/1JPgdLSURZUJhim6S55r1NbNdB4tvJvpP/preview" width="380"
height="250" allow="autoplay"></iframe>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Classroom chat</h5>
<iframe src="https://drive.google.com/file/d/1KqhUVKv2cRMrOniUgneNb6bsuhhFqZq2/preview" width="400"
height="250" allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
</section>
<style>
.news-container {
padding: 20px;
}
.news-card {
background-color: #f5f5f5;
border-radius: 5px;
overflow: hidden;
margin-bottom: 20px;
}
.news-image {
position: relative;
}
.news-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
opacity: 0;
transition: opacity 0.3s;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
/* Allow underlying elements to receive pointer events */
}
.news-overlay:hover {
opacity: 1;
}
.news-description {
color: #fff;
text-align: center;
font-size: 16px;
padding: 10px;
}
.news-title {
padding: 10px;
}
.news-title h3 {
margin: 0;
font-size: 20px;
color: #333;
}
.blank-card {
background-color: #f5f5f5;
border-radius: 5px;
overflow: hidden;
margin-bottom: 20px;
text-align: center;
padding: 20px;
}
.blank-title {
color: #00f;
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.blank-subtitle {
color: #000;
font-size: 16px;
margin-top: 0;
}
</style>
<section id="news" class="news">
<div class="section-title">
<h2>NEWS</h2>
<p>Recent News about Prof. DUX</p>
</div>
<div class="news-container">
<div class="row">
<div class="col-md-4">
<div class="news-card">
<div class="news-image">
<iframe src="https://drive.google.com/file/d/1kQEE8bRJmpv5UG0jnAeUrbZsgBqItaW-/preview" width="100%"
height="480" allow="autoplay"></iframe>
<div class="news-overlay">
<p class="news-description">Description for News Item 1</p>
</div>
</div>
<div class="news-title">
<h3>News Item 1</h3>
</div>
</div>
</div>
<div class="col-md-4">
<div class="news-card">
<div class="news-image">
<iframe
src="https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2F%2Fwww.facebook.com%2F100071550756634%2Fvideos%2F838758904297521%2F&show_text=false&width=560&t=0"
width="560" height="314" style="border:none;overflow:hidden" scrolling="no" frameborder="0"
allowfullscreen="true"
allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"
allowFullScreen="true"></iframe>
<div class="news-overlay">
<p class="news-description">Description for News Item 2</p>
</div>
</div>
<div class="news-title">
<h3>News Item 2</h3>
</div>
</div>
</div>
<div class="col-md-4">
<div class="news-card">
<div class="news-image">
<iframe src="https://drive.google.com/file/d/16FjkqK9hFkZO5JtHKU8D2sTemLxY8sBv/preview" width="640"
height="480" allow="autoplay"></iframe>
<div class="news-overlay">
<p class="news-description">Description for News Item 3</p>
</div>
</div>
<div class="news-title">
<h3>News Item 3</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="news-card">
<div class="news-image">
<iframe src="https://drive.google.com/file/d/1V2UoHzGtugZt2qUP-bkzXmRaaWgzNqHU/preview" width="640"
height="480" allow="autoplay"></iframe>
<div class="news-overlay">
<p class="news-description">Description for News Item 1</p>
</div>
</div>
<div class="news-title">
<h3>News Item 4</h3>
</div>
</div>
</div>
<div class="col-md-4">
<div class="news-card">
<div class="news-image">
<iframe src="https://drive.google.com/file/d/1WnMHEftSp0j4B2FwW5Beq-9cX9HkIrPh/preview" width="640"
height="480" allow="autoplay"></iframe>
<div class="news-overlay">
<p class="news-description">Description for News Item 2</p>
</div>
</div>
<div class="news-title">
<h3>News Item 5</h3>
</div>
</div>
</div>
<!-- Blank Template -->
<div class="col-md-4">
<div class="news-card">
<div class="news-image">
<iframe src="https://drive.google.com/file/d/1Bi9c_C353Uw_pR3CVK9dtn8zDAFaqYVJ/preview" width="640"
height="480" allow="autoplay"></iframe>
<div class="news-overlay">
<p class="news-description">Description for News Item 1</p>
</div>
</div>
<div class="news-title">
<h3>News Item 6</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="news-card">
<div class="news-image">
<iframe src="https://drive.google.com/file/d/1vGQoldQfly1VdQBarG2EqKiI6xfJBwdp/preview" width="640"
height="480" allow="autoplay"></iframe>
<div class="news-overlay">
<p class="news-description">Description for News Item 1</p>
</div>
</div>
<div class="news-title">
<h3>News Item 7</h3>
</div>
</div>
</div>
<!-- Blank Template -->
<div class="col-md-4">
<div class="news-card blank-card">
<div class="news-title">
<h3 class="blank-title">Stay Tuned!</h3>
<h4 class="blank-subtitle">Something exciting is coming up soon</h4>
</div>
</div>
</div>
<!-- Blank Template -->
<div class="col-md-4">
<div class="news-card blank-card">
<div class="news-title">
<h3 class="blank-title">Stay Tuned!</h3>
<h4 class="blank-subtitle">Something exciting is coming up soon</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="carousel slide" data-bs-ride="carousel">
<div class="section-title">
<h2>NEWS</h2>
<p>Recent News about Prof. DUX</p>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<iframe src="https://drive.google.com/file/d/1kQEE8bRJmpv5UG0jnAeUrbZsgBqItaW-/preview" width="640" height="480" allow="autoplay"></iframe>
</div>
<div class="carousel-item">
<iframe src="https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2F%2Fwww.facebook.com%2F100071550756634%2Fvideos%2F838758904297521%2F&show_text=false&width=560&t=0" width="560" height="314" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share" allowFullScreen="true"></iframe>
</div>
<div class="carousel-item">
<iframe src="https://drive.google.com/file/d/1kQEE8bRJmpv5UG0jnAeUrbZsgBqItaW-/preview" width="640" height="480" allow="autoplay"></iframe>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</button>
</section> -->
<!-- ======= Our Team Section ======= -->
<!-- <section id="team" class="team">
<div class="container">
<div class="section-title">
<h2>Our Team</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row">
<div class="col-xl-3 col-lg-4 col-md-6">
<div class="member">
<img src="assets/img/team/team-1.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>Walter White</h4>
<span>Chief Executive Officer</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6" data-wow-delay="0.1s">
<div class="member">
<img src="assets/img/team/team-2.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>Sarah Jhonson</h4>
<span>Product Manager</span>
</div>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-md-6" data-wow-delay="0.2s">
<div class="member">
<img src="assets/img/team/team-3.jpg" class="img-fluid" alt="">
<div class="member-info">
<div class="member-info-content">
<h4>William Anderson</h4>