This repository has been archived by the owner on Sep 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1472 lines (1104 loc) · 64.7 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="zxx">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="CPP - Chinh Phuc Program">
<meta name="description"
content="IOT - IMIN Olympia Training là ứng dụng tiếp nối của IMIN, xây dựng nhằm mục đích luyện tập kiến thức tự nhiên xã hội cho các bạn học sinh - sinh viên trên toàn quốc.">
<title>IOT - IMIN Olympia Training</title>
<!-- Loading Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Loading Template CSS -->
<link href="css/style.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/style-magnific-popup.css" rel="stylesheet">
<!-- Awsome Fonts -->
<link rel="stylesheet" href="css/all.min.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<!-- Font Favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<div id="fb-root"></div>
<script async defer crossorigin="anonymous"
src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v11.0&appId=719574194844552&autoLogAppEvents=1"
nonce="2fgxCqMG"></script>
<!--begin header -->
<header class="header">
<!--begin navbar-fixed-top -->
<nav class="navbar navbar-expand-lg navbar-default navbar-fixed-top">
<!--begin container -->
<div class="container">
<!--begin logo -->
<a class="navbar-brand" href="#">
<img src="images/IOT-logo.svg" />
</a>
<!--end logo -->
<!--begin navbar-toggler -->
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse"
data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><i class="fas fa-bars"></i></span>
</button>
<!--end navbar-toggler -->
<!--begin navbar-collapse -->
<div class="navbar-collapse collapse" id="navbarCollapse" style="">
<!--begin navbar-nav -->
<ul class="navbar-nav ml-auto">
<li><a href="#home">Trang chủ</a></li>
<li><a href="#about">Giới thiệu</a></li>
<li><a href="#tournaments">Giải đấu</a></li>
<li><a href="#leaderboard">Xếp hạng</a></li>
<li><a href="#instruction">Hướng dẫn</a></li>
<li><a href="#blog">Tin tức</a></li>
<li><a href="#faq">Giải đáp</a></li>
<li><a href="#team">Nhân sự</a></li>
<li class="discover-link"><a href="#contact" class="discover-btn">Đăng nhập</a></li>
</ul>
<!--end navbar-nav -->
</div>
<!--end navbar-collapse -->
</div>
<!--end container -->
</nav>
<!--end navbar-fixed-top -->
</header>
<!--end header -->
<!--begin home section -->
<section class="home-section" id="home">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row align-items-center">
<!--begin col-md-6-->
<div class="col-md-6 margin-top-20 col-left">
<img src="images/IOT-logo.svg" />
<!-- <h1>Discover The Wold's Most Advanced Online Tool</h1> -->
<p class="hero-text">Đây là một dự án của CPP - Chinh Phục Program nhằm tạo ra nơi giao lưu tri thức
cho các bạn trẻ khắp cả nước, theo format “Đường lên đỉnh Olympia”.</p>
<a href="/" class="btn-blue scrool">Tham gia ngay</a>
</div>
<!--end col-md-6-->
<!--begin col-md-6-->
<div class="col-md-6">
<img src="images/graphic-header.svg">
</div>
<!--end col-md-6-->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end home section -->
<!--begin partners-section-->
<div class="partners-section">
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row">
<!--begin col-sm-12-->
<div class="col-md-10 mx-auto text-center partners">
<h5 class="partners-title">Bài viết về dự án</h5>
<img src="https://via.placeholder.com/250x128" class="partners" alt="image">
<img src="https://via.placeholder.com/250x128" class="partners" alt="image">
<img src="https://via.placeholder.com/250x128" class="partners" alt="image">
<img src="https://via.placeholder.com/250x128" class="partners" alt="image">
</div>
<!--end col-sm-12-->
</div>
<!--end row-->
</div>
<!--end container-->
</div>
<!--end partners-section-->
<!--begin section-white -->
<section class="section-white" id="about">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center margin-bottom-20">
<h2 class="section-title">Các chức năng</h2>
<p class="section-subtitle">Dicover how our amazing team can help your business.</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
</div>
<!--end container -->
<!--begin services-wrapper -->
<div class="services-wrapper">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services blue">
<img src="images/services-compete.svg" class="width-100">
<h4>Thi đấu</h4>
<p>Tổ chức các trận đấu có số lượng người chơi không giới hạn với hệ thống giải đấu phong phú.</p>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services red">
<img src="images/services-revise.svg" class="width-100">
<h4>Luyện tập</h4>
<p>Tính năng này cho phép nhóm 4 người chơi tham gia trận đấu mô phỏng với bộ đề ngẫu nhiên từ ngân hàng đề luyện tập</p>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4">
<div class="main-services yellow">
<img src="images/services-rating.svg" class="width-100">
<h4>Điểm năng lực</h4>
<p>Hệ thống điểm năng lực mang tính cạnh tranh giúp xếp hạng các người chơi hợp lí</p>
</div>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
</div>
<!--end container -->
</div>
<!--end services-wrapper -->
</section>
<!--end section-white -->
<!--begin section-grey -->
<section class="section-grey">
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row align-items-center">
<!--begin col-md-6-->
<div class="col-md-6 padding-bottom-30 wow slideInLeft" data-wow-delay="0.25s"
style="visibility: visible; animation-delay: 0.25s; animation-name: slideInLeft;">
<!-- <img src="https://via.placeholder.com/555x425" class="width-100 bottom-margins-images" alt="pic">
-->
<iframe width="560" height="315" src="https://www.youtube.com/embed/PcY0IohrXco"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<!--end col-sm-6-->
<!--begin col-md-6-->
<div class="col-md-6">
<h3>Tìm hiểu về những lợi ích đến từ dự án IOT - IMIN Olympia Training</h3>
<p>Từ tháng 06/2019, đội ngũ phát triển đã bắt đầu bắt tay vào xây dựng và phát triển nền tảng nhằm
nhằm đem lại lợi ích cho các bạn học sinh sinh viên trên cả nước</p>
<ul class="benefits">
<li><i class="fas fa-check"></i> Tìm hiểu và khám phá tri thức trên mọi lĩnh vực.</li>
<li><i class="fas fa-check"></i> Giao lưu cùng các bạn học sinh sinh viên có cùng đam mê trên
khắp đất nước.</li>
<li><i class="fas fa-check"></i> Giải trí bổ ích sau những giờ học.</li>
<li><i class="fas fa-check"></i> Thực hiện giãn cách xã hội nhưng vẫn có thể giao lưu kết bạn,
tiếp thu tri thức.</li>
</ul>
<a href="#" class="btn-red small scrool">Tham gia ngay</a>
</div>
<!--end col-md-6-->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end section-grey-->
<!--begin fun-facts -->
<section class="section-bg-2 small-padding">
<div class="section-bg-overlay"></div>
<!--begin container-->
<div class="container">
<!--begin row-->
<div class="row">
<!--begin col md 7 -->
<div class="col-md-7 mx-auto padding-top-20 margin-bottom-10 text-center">
<h3 class="white-text">Thành quả hoạt động</h3>
</div>
<!--end col md 7-->
</div>
<!--end row-->
<!--begin row-->
<div class="row">
<!--begin fun-facts-box -->
<div class="col-md-2 offset-md-2 fun-facts-box blue text-center">
<i class="fas fa-users"></i>
<p class="fun-facts-title"><span class="facts-numbers count-users">-</span><br>Tài khoản đăng kí</p>
</div>
<!--end fun-facts-box -->
<!--begin fun-facts-box -->
<div class="col-md-2 fun-facts-box red text-center">
<i class="fas fa-chess"></i>
<p class="fun-facts-title"><span class="facts-numbers count-matchs">-</span><br>Trận đấu</p>
</div>
<!--end fun-facts-box -->
<!--begin fun-facts-box -->
<div class="col-md-2 fun-facts-box green text-center">
<i class="fas fa-hands-helping"></i>
<p class="fun-facts-title"><span class="facts-numbers count-tours">-</span><br>Giải đấu</p>
</div>
<!--end fun-facts-box -->
<!--begin fun-facts-box -->
<div class="col-md-2 fun-facts-box yellow text-center">
<i class="fas fa-school"></i>
<p class="fun-facts-title"><span class="facts-numbers count-schools">-</span><br>Trường THCS / THPT
ở 63 tỉnh thành</p>
</div>
<!--end fun-facts-box -->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end fun-facts -->
<!--begin testimonials section -->
<section class="section-grey" id="testimonials">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row align-items-center">
<!--begin col-md-5 -->
<div class="col-md-5 col-sm-12">
<h2>Nhận xét từ người chơi</h2>
<p>Chúng tôi luôn tôn trọng những ý kiến và đóng góp quý báu từ những người chơi, và thay đổi để tạo
ra trải nghiệm tốt nhất.
<br />
<br />
Bạn cũng có thể đóng góp ý kiến cho chúng tôi tại trang Fanpage của <b>CPP - Chinh Phục
Program</b>
</p>
<iframe
src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FCPPChinhPhucVN%2F&tabs&width=400&height=130&small_header=false&adapt_container_width=false&hide_cover=false&show_facepile=true&appId=719574194844552"
width="400" height="130" style="border:none;overflow:hidden" scrolling="no" frameborder="0"
allowfullscreen="true"
allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>
</div>
<!--end col-md-5 -->
<!--begin col-md-1 -->
<div class="col-md-1"></div>
<!--end col-md-1 -->
<!--begin col-md-6-->
<div class="col-md-6">
<!--begin accordion -->
<div class="accordion" id="accordionFAQ">
<!--begin card -->
<div class="card">
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordionFAQ">
<div class="card-body">
IOT là nền tảng có format gần giống với chương trình Đường lên đỉnh Olympia với số
lượng người dùng đông nhất ở thời điểm hiện tại. Ở IOT, người dùng có thể dễ dàng
thao tác các tính năng và nguồn đề đa dạng ở nhiều lĩnh vực. IOT cũng thường xuyên
tổ chức các trận đấu với chất lượng đề và đội ngũ cộng tác viên khá tốt.
</div>
</div>
<div class="card-header" id="headingOne" data-toggle="collapse" data-target="#collapseOne"
aria-expanded="true" aria-controls="collapseOne">
<h5 class="mb-0">
<div class="btn btn-link">
<img src="images/player-haian.jpg" alt="testimonials" class="testim-img">
<p class="testim-name"> Nguyễn Thiện Hải An <br /> <span>Thí sinh CKN Đường lên
đỉnh Olympia năm thứ 21</span></p>
</div>
</h5>
</div>
</div>
<!--end card -->
<!--begin card -->
<div class="card">
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo"
data-parent="#accordionFAQ">
<div class="card-body">
IOT có sự tương tác và hiệu suất người chơi tăng tốt trong thời gian qua, thu hút
được nhiều bạn có đam mê kiến thức. Đội ngũ điều hành dự án đều là các chị dày dặn
kinh nghiệm; format khá dễ sử dụng, có tích hợp nhiều chức năng không gây nhàm chán.
Các giải đấu cũng đa dạng và phân chia rõ ràng, cung cấp nhiều kiến thức cho người
chơi. Tổng quan, IOT đang có sức hút khá tốt, không chỉ trong lứa học sinh mà trong
cả những anh chị sinh viên, người đi làm cùng tham gia.
</div>
</div>
<div class="card-header" id="headingTwo" data-toggle="collapse" data-target="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">
<h5 class="mb-0">
<div class="btn btn-link collapsed">
<img src="images/player-anhquoc.jpg" alt="testimonials" class="testim-img">
<p class="testim-name">Hoàng Đình Anh Quốc <br /> <span>Siêu Trí Tuệ Việt
Nam</span></p>
</div>
</h5>
</div>
</div>
<!--end card -->
<!--begin card -->
<div class="card">
<div id="collapseThree" class="collapse" aria-labelledby="headingThree"
data-parent="#accordionFAQ">
<div class="card-body">
Theo mình, IOT là một nền tảng phong phú và chất lượng dành cho những ai có niềm đam
mê với tri thức và học thuật. IOT vừa cung cấp một môi trường để được thử tài, rèn
luyện và giải trí với những câu hỏi hóc búa, vừa tạo không gian tiện lợi để thiết
lập các trận đấu chia sẻ kiến thức cùng mọi người; vừa là xúc tác để trò chuyện,
trao đổi và làm bạn cùng những người có chung sở thích.
</div>
</div>
<div class="card-header" id="headingThree" data-toggle="collapse"
data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
<h5 class="mb-0">
<div class="btn btn-link collapsed">
<img src="images/player-ductan.jpg" alt="testimonials" class="testim-img">
<p class="testim-name">Bùi Nguyễn Đức Tân <br /> <span>Quán quân Chinh Phục -
Vietnam’s
Brainiest Kid mùa 3</span></p>
</div>
</h5>
</div>
</div>
<!--end card -->
<!--begin card -->
<div class="card">
<div id="collapseFour" class="collapse" aria-labelledby="headingFour"
data-parent="#accordionFAQ">
<div class="card-body">
Trên cả tri thức, IOT mang lại cho người chơi sự trải nghiệm đầy chân thật, rèn giũa
nên tính quyết đoán và bản lĩnh tự tin cho mọi hành trình phía trước.
</div>
</div>
<div class="card-header" id="headingFour" data-toggle="collapse" data-target="#collapseFour"
aria-expanded="false" aria-controls="collapseFour">
<h5 class="mb-0">
<div class="btn btn-link collapsed">
<img src="images/player-nguyenhuy.jpg" alt="testimonials" class="testim-img">
<p class="testim-name">Nguyễn Huy <br /> <span>Thủ khoa Tốt nghiệp THPT tỉnh
Kiên Giang năm 2021</span></p>
</div>
</h5>
</div>
</div>
<!--end card -->
</div>
<!--end accordion -->
</div>
<!--end col-md-6-->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end testimonials section -->
<!--begin features section -->
<section class="section-white" id="tournaments">
<!--begin container -->
<div class="container-fluid">
<!--begin row -->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 text-center padding-bottom-10">
<h2 class="section-title">Hệ thống giải đấu</h2>
<p class="section-subtitle">Tại <b>IOT - IMIN Olympia Training</b>, chúng tôi có một hệ thống giải
đấu đa dạng và phong phú, được đóng góp mỗi ngày từ hơn 150 cộng tác viên.</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
<!--begin row -->
<div class="row panel-tournaments">
</div>
<!--end row -->
<!--begin row -->
<div class="text-center">
<a href="#tournaments" class="btn-red small scrool btn-showall" onclick="show_all()">Xem thêm</a>
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end features section -->
<!--begin section-white -->
<section class="section-grey" id="leaderboard">
<!--begin container-->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 text-center padding-bottom-10">
<h2 class="section-title">Người chơi dẫn đầu</h2>
<p class="section-subtitle">Bảng xếp hạng năng lực những người chơi trên <b>IOT - IMIN Olympia Training</b>.</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
<!--begin row-->
<div class="row align-items-start">
<!--begin col-md-6-->
<div class="col-md-6">
<div class="nav margin-right-25 list-leaderboard-1">
</div>
</div>
<div class="col-md-6">
<div class="nav margin-right-25 list-leaderboard-2">
</div>
</div>
<!--end col-md-6-->
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end section-white-->
<!--begin instruction section -->
<section class="section-white" id="instruction">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center margin-bottom-30">
<h2 class="section-title">Hướng dẫn tham gia</h2>
<p class="section-subtitle">Tham khảo các bài viết sau trước khi các bạn bắt đầu tham gia thi tại
<b>IOT - IMIN Olympia Training</b> nhé.
</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
</div>
<!--end container -->
<!--begin container -->
<div class="container padding-bottom-30">
<!--begin row-->
<div class="row">
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-12 p-0 m-0">
<figure class="gallery-insta">
<!--begin popup-gallery-->
<div class="popup-gallery popup-gallery-rounded portfolio-pic">
<a class="popup2" href="images/tutorial/1-1.jpg" title="5 BƯỚC TẠO TÀI KHOẢN IOT">
<img src="images/tutorial/1-1.jpg" class="width-100" alt="pic">
<span class="eye-wrapper"><i class="fa fa-search-plus eye-icon"
style="font-size: 38px;"></i></span>
</a>
<a class="popup2" href="images/tutorial/1-2.jpg" title="Ảnh 1"></a>
<a class="popup2" href="images/tutorial/1-3.jpg" title="Ảnh 2"></a>
<a class="popup2" href="images/tutorial/1-4.jpg" title="Ảnh 3"></a>
<a class="popup2" href="images/tutorial/1-5.jpg" title="Ảnh 4"></a>
<a class="popup2" href="images/tutorial/1-6.jpg" title="Ảnh 5"></a>
</div>
<!--end popup-gallery-->
</figure>
<figure class="gallery-insta">
<!--begin popup-gallery-->
<div class="popup-gallery popup-gallery-rounded portfolio-pic">
<a class="popup2" href="images/tutorial/4-1.jpg" title="TÍNH NĂNG LUYỆN TẬP TRÊN IOT 💻">
<img src="images/tutorial/4-1.jpg" class="width-100" alt="pic">
<span class="eye-wrapper"><i class="fa fa-search-plus eye-icon"
style="font-size: 38px;"></i></span>
</a>
<a class="popup2" href="images/tutorial/4-2.jpg" title="Ảnh 1"></a>
<a class="popup2" href="images/tutorial/4-3.jpg" title="Ảnh 2"></a>
<a class="popup2" href="images/tutorial/4-4.jpg" title="Ảnh 3"></a>
<a class="popup2" href="images/tutorial/4-4.jpg" title="Ảnh 4"></a>
</div>
<!--end popup-gallery-->
</figure>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-6 col-xs-12 p-0 m-0">
<figure class="gallery-insta">
<!--begin popup-gallery-->
<div class="popup-gallery popup-gallery-rounded portfolio-pic">
<a class="popup2" href="images/tutorial/2-1.jpg"
title="Ở NHÀ LEO RANK IOT, ĐUA TOP BXH TOÀN QUỐC 🏆">
<img src="images/tutorial/2-1.jpg" class="width-100" alt="pic">
<span class="eye-wrapper"><i class="fa fa-search-plus eye-icon"
style="font-size: 38px;"></i></span>
</a>
<a class="popup2" href="images/tutorial/2-2.png" title="Ảnh 1"></a>
<a class="popup2" href="images/tutorial/2-3.png" title="Ảnh 2"></a>
<a class="popup2" href="images/tutorial/2-4.jpg" title="Ảnh 3"></a>
<a class="popup2" href="images/tutorial/2-5.jpg" title="Ảnh 4"></a>
<a class="popup2" href="images/tutorial/2-6.jpg" title="Ảnh 5"></a>
</div>
<!--end popup-gallery-->
</figure>
<figure class="gallery-insta">
<!--begin popup-gallery-->
<div class="popup-gallery popup-gallery-rounded portfolio-pic">
<a class="popup2" href="images/tutorial/6-1.png"
title="Ở NHÀ LEO RANK IOT, ĐUA TOP BXH TOÀN QUỐC 🏆">
<img src="images/tutorial/6-1.png" class="width-100" alt="pic">
<span class="eye-wrapper"><i class="fa fa-search-plus eye-icon"
style="font-size: 38px;"></i></span>
</a>
<a class="popup2" href="images/tutorial/6-2.png" title="Ảnh 1"></a>
<a class="popup2" href="images/tutorial/6-3.png" title="Ảnh 2"></a>
<a class="popup2" href="images/tutorial/6-4.png" title="Ảnh 3"></a>
</div>
<!--end popup-gallery-->
</figure>
</div>
<!--end col-md-4 -->
<!--begin col-md-4 -->
<div class="col-md-4 col-sm-6 col-xs-12 p-0 m-0">
<figure class="gallery-insta">
<!--begin popup-gallery-->
<div class="popup-gallery popup-gallery-rounded portfolio-pic">
<a class="popup2" href="images/tutorial/3-1.png"
title="MÙA DỊCH OLYMPIANS LÀM GÌ Ở NHÀ? 🏠">
<img src="images/tutorial/3-1.png" class="width-100" alt="pic">
<span class="eye-wrapper"><i class="fa fa-search-plus eye-icon"
style="font-size: 38px;"></i></span>
</a>
<a class="popup2" href="images/tutorial/3-2.jpg" title="Ảnh 1"></a>
<a class="popup2" href="images/tutorial/3-3.jpg" title="Ảnh 2"></a>
<a class="popup2" href="images/tutorial/3-4.png" title="Ảnh 3"></a>
<a class="popup2" href="images/tutorial/3-5.jpg" title="Ảnh 4"></a>
<a class="popup2" href="images/tutorial/3-6.png" title="Ảnh 5"></a>
</div>
<!--end popup-gallery-->
</figure>
<figure class="gallery-insta">
<!--begin popup-gallery-->
<div class="popup-gallery popup-gallery-rounded portfolio-pic">
<a class="popup2" href="images/tutorial/5-1.jpg"
title="BẢN ĐĂNG KÍ O22 - VIẾT GÌ ĐỂ THẬT NỔI BẬT?">
<img src="images/tutorial/5-1.jpg" class="width-100" alt="pic">
<span class="eye-wrapper"><i class="fa fa-search-plus eye-icon"
style="font-size: 38px;"></i></span>
</a>
<a class="popup2" href="images/tutorial/5-2.jpg" title="Ảnh 1"></a>
<a class="popup2" href="images/tutorial/5-3.jpg" title="Ảnh 2"></a>
<a class="popup2" href="images/tutorial/5-4.jpg" title="Ảnh 3"></a>
</div>
<!--end popup-gallery-->
</figure>
</div>
<!--end col-md-4 -->
</div>
<!--end row -->
</div>
<!--end container -->
</section>
<!--end instruction section -->
<!--begin blog section -->
<section class="section-grey section-bottom-border" id="blog">
<!--begin container-->
<div class="container-fluid">
<!--begin row-->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 text-center">
<h2 class="section-title">Tin tức</h2>
<p class="section-subtitle">Các tin tức mới nhất từ <b>IOT - IMIN Olympia Training</b> trên mạng xã hội</p>
</div>
<!--end col-md-12-->
</div>
<!--end row-->
<!--begin row-->
<div class="row" id="panel-facebook-posts">
</div>
<!--end row-->
</div>
<!--end container-->
</section>
<!--end blog section -->
<!--begin pricing section -->
<section class="section-grey">
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12 -->
<div class="col-md-12 text-center margin-bottom-20">
<h2 class="section-title">Ngọn lửa O khởi nguồn từ những mái trường</h2>
<p class="section-subtitle">Hun đúc tình yêu Olympia, kết nối những bạn trẻ có chung một đam mê</p>
</div>
<!--end col-md-12 -->
</div>
<!--end row -->
</div>
<!--end container -->
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="align-items-center">
<!--Carousel Wrapper-->
<div id="multi-item-example" class="carousel slide carousel-multi-item" data-ride="carousel">
<div class="controls-top" style="float: right;">
<a class="btn btn-floating" href="#multi-item-example" data-slide="prev"><i
class="fas fa-chevron-left"></i></a>
<a class="btn btn-floating" href="#multi-item-example" data-slide="next"><i
class="fas fa-chevron-right"></i></a>
</div>
<!--Slides-->
<div class="carousel-inner" role="listbox">
<!--Second slide-->
<div class="carousel-item active">
<!--begin col-md-4-->
<div class="col-md-4 col-sm-6" style="float:left;">
<div class="rank-box-third">
<a href="https://www.facebook.com/CPPChinhPhucVN/posts/4555303874502379"
target="_blank">
<img src="images/clb/clb-01.jpg" class="d-block w-100">
<h6 class="name">POLYMATH - PHAN DINH PHUNG OLYMPIA CHALLENGE</h6>
</a>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4 col-sm-6" style="float:left;">
<div class="rank-box-third">
<a href="https://www.facebook.com/CPPChinhPhucVN/posts/4567270926639007"
target="_blank">
<img src="images/clb/clb-02.jpg" class="d-block w-100">
<h6 class="name">CBG OLYMPIA CLUB 🔥 <br />THPT Chuyên Bắc Giang</h6>
</a>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4 col-sm-6" style="float:left;">
<div class="rank-box-third">
<a href="https://www.facebook.com/CPPChinhPhucVN/posts/4582733108426122"
target="_blank">
<img src="images/clb/clb-03.jpg" class="d-block w-100">
<h6 class="name">CLB Olympia trường THPT Chuyên Hùng Vương - Gia Lai 🤴</h6>
</a>
</div>
</div>
<!--end col-md-4 -->
</div>
<!--/.Slides-->
<!--Second slide-->
<div class="carousel-item">
<!--begin col-md-4-->
<div class="col-md-4 col-sm-6" style="float:left;">
<div class="rank-box-third">
<a href="https://www.facebook.com/CPPChinhPhucVN/posts/4593607197338713"
target="_blank">
<img src="images/clb/clb-04.jpg" class="d-block w-100">
<h6 class="name">OLAS - OLYMPIANS OF LONG AN SPECIALIZED SCHOOL 💎</h6>
</a>
</div>
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4 col-sm-6" style="float:left;">
</div>
<!--end col-md-4 -->
<!--begin col-md-4-->
<div class="col-md-4 col-sm-6" style="float:left;">
</div>
<!--end col-md-4 -->
</div>
<!--/.Slides-->
</div>
<!--/.Carousel Wrapper-->
</div>
<!--end container -->
</section>
<!--end pricing section -->
<!--begin faq section -->
<section class="section-white" id="faq">
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 text-center padding-bottom-10">
<h2 class="section-title">Các câu hỏi thường gặp</h2>
<p class="section-subtitle">Hãy tham khảo những câu hỏi tại đây nếu bạn có vấn đề với khi tham gia
cuộc thi nhé</p>
</div>
<!--end col-md-12 -->
</div>
<div class="row">
<ul id="accordion" class="col-sm-6 col-md-12">
<!-- Question one -->
<li>
<div id="choose" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true"