-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
560 lines (557 loc) · 34.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Miniapps</title>
<link rel="icon" href="./assets/img/favicon.gif" type="image/x-icon" />
<!-- CSS -->
<!-- Bootstrap -->
<link rel="stylesheet" href=" https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css">
<!-- Base -->
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="./assets/css/responesive.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js"></script>
<!-- Font Awe -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
</head>
<body>
<!-- Login & SignUp -->
<div class="overlay-account">
<span class="account-close fa-solid fa-xmark" onclick="closeRL()"></span>
<div class="account-box">
<div class="account-register">
<div class="select-register" onclick="openRegister()"></div>
<form action="" name="formRegister" class="form-register" onsubmit="return validateFormR()">
<h1 class="label-account label-register">Register</h1>
<div class="name-register form-register__item">
<input type="text" name="name-register">
<span class="erro-form erro-name-register"></span>
</div>
<div class="email-register form-register__item">
<input type="text" name="email-register">
<span class="erro-form erro-email-register"></span>
</div>
<div class="pass-register form-register__item">
<input type="password" name="pass-register">
<div class="sub-pass">
<p></p>
<p>*Mật khẩu từ 8 - 24 kí tự</p>
<p>*Chứa 1 kí tự viêt hoa, 1 kí tự đặc biệt và không được bất đầu bằng số.</p>
</div>
</div>
<span><input type="checkbox" name="check" id="check" onclick="checkRules()"> Tôi đồng ý với các <a href="" style="color: var(--primary);"> điều khoản</a></span>
<span class="registerM" onclick="loginMShow()" style="color: var(--primary);">Login</span>
<button class="btn btn-register">Register</button>
</form>
</div>
<div class="account-login">
<div class="select-login" onclick="openLogin()"></div>
<form action="" name="formLogin" class="form-login" onsubmit="return validateFormL()">
<h1 class="label-account label-login">Login</h1>
<div class="email-login form-register__item">
<input type="text" name="email-login">
<span class="erro-form erro-email-login"></span>
</div>
<div class="pass-login form-register__item">
<input type="password" name="pass-login">
</div>
<div class="code-login form-register__item">
<div class="code-show">
<span></span>
</div>
<input type="number" name="code-login" class="code-input" onchange="inputcode()">
</div>
<span class="changeRL">
<span style="margin-right: auto; margin-left: 60px "><a href="">Quên mật khẩu</a></span>
<span class="registerM" onclick="registerMShow()" style="color: var(--primary);">Register</span>
</span>
<button class="btn btnLogin">Login</button>
</form>
</div>
</div>
</div>
<!-- Nav -->
<div class="container-fluid nav-box">
<div class="container nav-content">
<a href="#" class="nav-logo">
<span>L</span><span>N</span><span>K</span><span>H</span><span>O</span><span>A</span>
</a>
<div class="nav-menu">
<ul class="nav-menu__list">
<li class="nav-menu__item"><a href="">Home</a></li>
<li class="nav-menu__item"><a href="#introduce">About</a> </li>
<li class="nav-menu__item"><a href="#course">Course</a></li>
<li class="nav-menu__item"><a href="#summary">Summary</a></li>
<li class="nav-menu__item"><a href="#question">Question</a></li>
</ul>
</div>
<div class="nav-login">
<button class="btn btn-login" onclick="openRL()">Login</button>
</div>
</div>
</div>
<!-- Nav Mobile -->
<button class="btn-show-nav-mb">
<i class="fa-solid fa-bars"></i>
</button>
<div class="nav-mb">
<div class="nav-mb-show">
<ul class="nav-mb-list">
<li class="nav-mb-item"><a href="#">Home</a></li>
<li class="nav-mb-item"><a href="#introduce">About</a></li>
<li class="nav-mb-item"><a href="#course">Course</a></li>
<li class="nav-mb-item"><a href="#summary">Summary</a></li>
<li class="nav-mb-item"><a href="#question">Question</a></li>
</ul>
</div>
</div>
<!-- Lading page -->
<div class="container-fluid landing-page">
<div class="container landing-page__box">
<div class="landing-page__left">
<div class="landing-page__content">
<h1>Website to share the knowledge learned</h1>
<p>With the knowledge I have learned and learned, I have tried to build small applications with the little knowledge that I have. Although there is nothing good and there are many shortcomings, I hope you will still happily accept and leave comments for me, so that I can improve and learn many things.</p>
</div>
<div class="landing-page__btn">
<button class="btn-discover">DISCOVER MORE</button>
<button class="btn-icon-text">
<div class="btn-icon">
<i class="fa-solid fa-play"></i>
</div>
<span>How it works</span>
</button>
</div>
</div>
<div class="landing-page__right">
<img src="./assets/img/rocket.svg" alt="">
</div>
<div class="cloud cloud-1"></div>
<div class="cloud cloud-2"></div>
</div>
</div>
<!-- Main -->
<div class="container">
<div class="row mt-100">
<div class="col col-12 col-lg-12 col-md-12">
<div class="introduce" id="introduce">
<div class="row">
<div class="col col-12 col-md-12 col-lg-6 col-sm-12">
<div class="introduce__item">
<img src="./assets/img/info.png" alt="">
</div>
</div>
<div class="col col-12 col-sm-12 col-md-12 col-lg-6">
<div class="introduce__item">
<div class="introduce__item-info">
<h1>Some information about me</h1>
<p>
I am a student at An Giang University - Vietnam National University, Ho Chi Minh City.
I am studying information technology, currently I am learning to build website interfaces.
I love turning complex problems into simple, beautiful, and intuitive designs.
</p>
<li><i class="fa-solid fa-circle-dot"></i> My name: Lương Nguyễn Khoa</li>
<li><i class="fa-solid fa-circle-dot"></i> I am a student at An Giang University - Vietnam National University, Ho Chi Minh City. </li>
<li><i class="fa-solid fa-circle-dot"></i> I'm a front-end developer</li>
<a class="btn-vcard" href="https://crllnkhoa.github.io/Vcard/" target="_blank">
KNOW MORE
<span></span>
<span></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-100">
<div class="col col-12 col-lg-12 col-md-12">
<div class="course" id="course">
<p class="sub-course">-Lessons learned-</p>
<h1>Completed Courses</h1>
<div class="list-course row g-5">
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
<div class="item-course">
<span>01</span>
<h4 style="margin-bottom: 10px;">HTML & CSS</h4>
<p>Learn HTML and CSS knowledge on the F8 website and school classes.</p>
</div>
</div>
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
<div class="item-course">
<span>02</span>
<h4 style="margin-bottom: 10px;">Responesive</h4>
<p>Learn Responesive knowledge on the F8 website and school classes.</p>
</div>
</div>
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
<div class="item-course">
<span>03</span>
<h4 style="margin-bottom: 10px;">Javascript Basic</h4>
<p>Learn Javascript knowledge on the F8 website and school classes.</p>
</div>
</div>
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
<div class="item-course">
<span>04</span>
<h4 style="margin-bottom: 10px;">Bootstrap</h4>
<p>Learn Bootstrap knowledge on the getbootstrap.com website and school classes and youtube.</p>
</div>
</div>
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
<div class="item-course">
<span>05</span>
<h4 style="margin-bottom: 10px;">HTML & CSS & Javascript</h4>
<p>Learn HTML and CSS & Javascript knowledge on the github website and youtube.</p>
</div>
</div>
<div class="col-12 col-lg-4 col-md-4 col-sm-12">
<div class="item-course">
<span>06</span>
<h4 style="margin-bottom: 10px;">HTML & CSS & Js</h4>
<p>Learn HTML and CSS, Js knowledge on the W3C website and school classes.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-100">
<div class="col col-12 col-lg-12 col-md-12 col-sm-12">
<div class="summary" id="summary">
<p class="sub-course">-Summary-</p>
<h1>Summary for Newbies</h1>
<div class="row g-4 summary__list">
<div class="col-12 col-md-12 col-lg-6 col-sm-12">
<div class="summary__item">
<div class="summary__box-img">
<img src="./assets/img/js arr/arrayjsthumb.jpg" alt="">
</div>
<div class="summary__box-info">
<h3 class="box-info__name">Array in Javascript!!</h3>
<p>Arrays trong JavaScript cho người mới bắt đầu
Khóa học đầy đủ: <a href="https://bit.ly/2VdSN2s">https://bit.ly/2VdSN2s</a>
</p>
<button class="read-more" onclick="openShowSummary()">Read more  <i class="fa-solid fa-arrow-right"></i></button>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6 col-sm-12">
<div class="summary__item">
<div class="summary__box-img">
<img src="./assets/img/jscheatsheet/jsthumb.jfif">
</div>
<div class="summary__box-info">
<h3 class="box-info__name">JavaScript Cheat sheet</h3>
<p>JavaScript Cheat sheet toàn diện PDF bao gồm
Bản Pdf đầy đủ: <a href="https://bit.ly/3ToDnVT">https://bit.ly/3ToDnVT</a>
</p>
<button class="read-more" onclick="openShowSummary()">Read more  <i class="fa-solid fa-arrow-right"></i></button>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6 col-sm-12">
<div class="summary__item">
<div class="summary__box-img">
<img src="./assets/img/csscheatsheet/1.jpg" alt="">
</div>
<div class="summary__box-info">
<h3 class="box-info__name">Css Cheat Sheet!!!</h3>
<p>Css Cheat Sheet cho người mới bắt đầu
Khóa học đầy đủ: <a href="https://bit.ly/3R346Wz">https://bit.ly/3R346Wz</a>
</p>
<button class="read-more" onclick="openShowSummary()">Read more  <i class="fa-solid fa-arrow-right"></i></button>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6 col-sm-12">
<div class="summary__item">
<div class="summary__box-img">
<img src="./assets/img/js arr/arrayjsthumb.jpg" alt="">
</div>
<div class="summary__box-info">
<h3 class="box-info__name">Bootstrap 5 CheatSheet!!</h3>
<p>Bootstrap 5 CheatSheet
rất quan trọng để biết điều này
Giúp đỡ đầy đủ HTML CSS JS
Cheak
</p>
<button class="read-more" onclick="openShowSummary()">Read more  <i class="fa-solid fa-arrow-right"></i></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="show-summary">
<div class="show-summary__heading">
<button class="show-summary__btn show-summary__heading-dark" onclick="dark()"><i class="fa-solid fa-moon"></i></button>
<button class="show-summary__btn show-summary__heading-close" onclick="closeSummary()"><i class="fa-solid fa-right-from-bracket"></i></button>
</div>
<div class="show-summary__list row">
<div class="show-summary__item col-12 col-lg-12 col-md-12 col-sm-12" id="summary1">
<h1>Array in JavaScript!!</h1>
<div class="img-1">
<img src="./assets/img/js arr/arrayjsthumb.jpg" alt="">
</div>
<div class="img-2 row">
<img src="./assets/img/js arr/1.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/js arr/2.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/js arr/3.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/js arr/4.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/js arr/5.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/js arr/6.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/js arr/7.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
</div>
</div>
<div class="show-summary__item col-12 col-lg-12 col-md-12 col-sm-12" id="summary2">
<h1>JavaScript Cheat sheet</h1>
<div class="img-2 row">
<img src="./assets/img/jscheatsheet/1.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/2.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/3.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/4.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/5.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/6.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/7.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/8.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/9.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/10.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/jscheatsheet/11.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12" class="col-12 col-lg-6 col-md-6 col-sm-12">
</div>
</div>
<div class="show-summary__item col-12 col-lg-12 col-md-12 col-sm-12" id="summary3">
<h1>CSS Cheat Sheet!!</h1>
<div class="img-1 row">
<img src="./assets/img/csscheatsheet/1.jpg" class="col-12 col-lg-6 col-md-6 col-sm-12">
</div>
</div>
<div class="show-summary__item col-12 col-lg-12 col-md-12 col-sm-12" id="summary4">
<h1>Bootstrap Cheat Sheet!!</h1>
<div class="img-2 row">
<img src="./assets/img/BootstrapCS/1.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/BootstrapCS/2.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/BootstrapCS/3.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/BootstrapCS/4.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/BootstrapCS/5.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/BootstrapCS/6.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/BootstrapCS/7.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
<img src="./assets/img/BootstrapCS/8.jpg" alt="" class="col-12 col-lg-6 col-md-6 col-sm-12">
</div>
</div>
</div>
</div>
<div class="row mt-100">
<div class="col col-12 col-lg-12 col-md-12 col-sm-12">
<div class="question" id="question">
<p class="sub-course">-Question-</p>
<h1 class="question-title-main">Frequently asked Questions</h1>
<div class="row g-2 question-box">
<div class="col col-12 col-lg-4 col-md-4 col-sm-12 ">
<div class="question__title">
<h1>Discover Frequently Asked Questions?</h1>
<button class="work-together">work together</button>
</div>
</div>
<div class="col col-12 col-lg-8 col-md-8 col-sm-12">
<div class="question-list">
<div class="question-item">
<div class="question-label" id="headingOne">
<p>
01. Line limit of paragraph.
</p>
<span>
<span class="question-plus question-plus1"><i class="fa-solid fa-plus"></i></span>
<span class="question-sub question-sub1"><i class="fa-solid fa-minus"></i></span>
</span>
</div>
<div class="question-body" id="collapseOne">
The IDENTIFICATION DIVISION must be the first division in each COBOL source program, factory definition, object definition, and method definition. The identification division names the program, class, or method and identifies the factory definition and object definition. The IDENTIFICATION DIVISION can include the date a program, class, or method was written, the date of compilation, and other such documentary information.
</div>
</div>
<div class="question-item">
<div class="question-label" id="headingTwo">
<p>
02. Filter items with js.
</p>
<span>
<span class="question-plus question-plus2"><i class="fa-solid fa-plus"></i></span>
<span class="question-sub question-sub2"><i class="fa-solid fa-minus"></i></span>
</span>
</div>
<div class="question-body" id="collapseTwo">
The IDENTIFICATION DIVISION must be the first division in each COBOL source program, factory definition, object definition, and method definition. The identification division names the program, class, or method and identifies the factory definition and object definition. The IDENTIFICATION DIVISION can include the date a program, class, or method was written, the date of compilation, and other such documentary information.
</div>
</div>
<div class="question-item">
<div class="question-label" id="headingThree">
<p>
03. Curious about how to build your own UX strategy? Here are five simple steps.
</p>
<span>
<span class="question-plus question-plus3"><i class="fa-solid fa-plus"></i></span>
<span class="question-sub question-sub3"><i class="fa-solid fa-minus"></i></span>
</span>
</div>
<div class="question-body" id="collapseThree">
<h1>Quick start</h1>
<p>Looking to quickly add Bootstrap to your project? Use jsDelivr, a free open source CDN. Using a package manager or need to download the source files? Head to the downloads page.</p>
<h1>CSS</h1>
<p>Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS.</p>
</div>
</div>
<div class="question-item">
<div class="question-label" id="headingFour">
<p>
04. Jquery Collapse.
</p>
<span>
<span class="question-plus question-plus4"><i class="fa-solid fa-plus"></i></span>
<span class="question-sub question-sub4"><i class="fa-solid fa-minus"></i></span>
</span>
</div>
<div class="question-body" id="collapseFour">
The IDENTIFICATION DIVISION must be the first division in each COBOL source program, factory definition, object definition, and method definition. The identification division names the program, class, or method and identifies the factory definition and object definition. The IDENTIFICATION DIVISION can include the date a program, class, or method was written, the date of compilation, and other such documentary information.
</div>
</div>
<div class="question-item">
<div class="question-label" id="headingFive">
<p>
05. Curious about how to build your own UX strategy? Here are five simple steps.
</p>
<span>
<span class="question-plus question-plus5"><i class="fa-solid fa-plus"></i></span>
<span class="question-sub question-sub5"><i class="fa-solid fa-minus"></i></span>
</span>
</div>
<div class="question-body" id="collapseFive">
<p>Many of our components require the use of JavaScript to function. Specifically, they require jQuery, Popper, and our own JavaScript plugins. We use jQuery’s slim build, but the full version is also supported.
Place one of the following
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="container-fluid footer">
<div class="container">
<div class="footer-box">
<div class="row">
<div class="col col-12 col-sm-12 col-md-12 col-lg-4">
<h1>
<a href="#" class="nav-logo">
<span>LNKhoa</span>
<p>Lorem ipsum dolor sit amet consecte tur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</p>
</a>
</h1>
</div>
<div class="col col-12 col-sm-12 col-md-12 col-lg-2">
<h1 style="font-size: 1.5rem;color: white;margin-bottom: 20px;">Our Services</h1>
<p>Strategy & Research</p>
<p>Web Development</p>
<p>Web Solution</p>
<p>Digital Merketing</p>
<p>App Design</p>
<p>Development</p>
</div>
<div class="col col-12 col-sm-12 col-md-12 col-lg-2">
<h1 style="font-size: 1.5rem;color: white;margin-bottom: 20px;">Company</h1>
<p>Strategy & Research</p>
<p>Our Services</p>
<p>Our Portfolio</p>
<p>Our Blog</p>
<p>Latest News</p>
<p>Contact Us</p>
</div>
<div class="col col-12 col-sm-12 col-md-12 col-lg-4">
<h1 style="font-size: 1.5rem;color: white;margin-bottom: 20px;">Contact Us</h1>
<div class="footer__address">
<p><i class="fa-sharp fa-solid fa-location-dot"></i> An Hòa, Châu Thành, An Giang, Việt Nam</p>
<p><i class="fa-solid fa-phone"></i> +084 3666 11 060</p>
<p><i class="fa-solid fa-envelope"></i> LNKHOA1205@gmail.com</p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/js/apps.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- Jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(function(){
$('#headingOne').on("click", function(){
$('#headingOne').toggleClass("acctive-collapse")
$('#collapseOne').slideToggle()
if($('#headingOne').hasClass('acctive-collapse')){
$('.question-plus1').hide()
$('.question-sub1').show()
} else {
$('.question-plus1').show()
$('.question-sub1').hide()
}
})
$('#headingTwo').on("click", function(){
$('#collapseTwo').slideToggle()
$('#headingTwo').toggleClass("acctive-collapse")
if($('#headingTwo').hasClass('acctive-collapse')){
$('.question-plus2').hide()
$('.question-sub2').show()
} else {
$('.question-plus2').show()
$('.question-sub2').hide()
}
})
$('#headingThree').on("click", function(){
$('#collapseThree').slideToggle()
$('#headingThree').toggleClass("acctive-collapse")
if($('#headingThree').hasClass('acctive-collapse')){
$('.question-plus3').hide()
$('.question-sub3').show()
} else {
$('.question-plus3').show()
$('.question-sub3').hide()
}
})
$('#headingFour').on("click", function(){
$('#collapseFour').slideToggle()
$('#headingFour').toggleClass("acctive-collapse")
if($('#headingFour').hasClass('acctive-collapse')){
$('.question-plus4').hide()
$('.question-sub4').show()
} else {
$('.question-plus4').show()
$('.question-sub4').hide()
}
})
$('#headingFive').on("click", function(){
$('#collapseFive').slideToggle()
$('#headingFive').toggleClass("acctive-collapse")
if($('#headingFive').hasClass('acctive-collapse')){
$('.question-plus5').hide()
$('.question-sub5').show()
} else {
$('.question-plus5').show()
$('.question-sub5').hide()
}
})
$('.btn-show-nav-mb').on("click", function(){
$('.nav-mb').toggle();
})
})
</script>
</html>