-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1169 lines (1057 loc) · 55.9 KB
/
index.html
File metadata and controls
1169 lines (1057 loc) · 55.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
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.0, maximum-scale=5.0, user-scalable=yes" />
<title>InsightLearn - Online Learning Platform | 500+ Courses</title>
<base href="/" />
<!-- ==========================================================================
FOUC PREVENTION (v2.3.9-dev) - Fixes Chrome layout shift on load
Hide page until CSS is fully loaded, then fade in smoothly
Reference: dotnet/aspnetcore#26571, skill.md
========================================================================== -->
<style>
html {
visibility: hidden;
opacity: 0;
}
html.fouc-ready {
visibility: visible;
opacity: 1;
transition: opacity 0.15s ease-in;
}
</style>
<!-- ==========================================================================
GOOGLE ANALYTICS 4 (GA4) - SEO Tracking
GDPR: Loaded ONLY after user consent via cookieConsentWall.loadAnalytics()
Property ID: 351495180 | Stream ID: 484824838
Dashboard: https://analytics.google.com/analytics/web/#/a351495180p484824838/
========================================================================== -->
<script>
// GA4 helper functions (available globally, but GA4 loads only after consent)
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
// Track course views, enrollments, and conversions
function trackCourseView(courseId, courseName, category) {
if (!window._ga4Loaded) return;
gtag('event', 'view_item', {
'currency': 'EUR',
'items': [{
'item_id': courseId,
'item_name': courseName,
'item_category': category
}]
});
}
function trackEnrollment(courseId, courseName, price) {
if (!window._ga4Loaded) return;
gtag('event', 'purchase', {
'currency': 'EUR',
'value': price,
'items': [{
'item_id': courseId,
'item_name': courseName
}]
});
}
</script>
<!-- ==========================================================================
GOOGLE SEARCH CONSOLE - VERIFIED
Status: VERIFIED via DNS (Domain property)
Verification Date: 2025-12-23
Property: insightlearn.cloud (covers all subdomains including www)
Method: DNS TXT record (Provider del nome di dominio)
Dashboard: https://search.google.com/search-console?resource_id=sc-domain:insightlearn.cloud
Stats (as of 2025-12-23):
- 35 pages indexed
- 298 pages discovered (pending indexing)
- 2 clicks from search
========================================================================== -->
<!-- SEO Meta Tags -->
<meta name="description"
content="Learn coding, business, design and creative skills with InsightLearn. Access 500+ expert-led courses, interactive lessons, and AI-powered learning tools. Start your learning journey today!" />
<meta name="keywords"
content="online courses, e-learning, programming, web development, business skills, design courses, AI learning, video tutorials, InsightLearn" />
<meta name="author" content="InsightLearn" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<link rel="canonical" href="https://www.insightlearn.cloud/" />
<!-- Alternate URLs for international versions -->
<link rel="alternate" hreflang="en" href="https://www.insightlearn.cloud/" />
<link rel="alternate" hreflang="it" href="https://www.insightlearn.cloud/?lang=it" />
<link rel="alternate" hreflang="x-default" href="https://www.insightlearn.cloud/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.insightlearn.cloud/" />
<meta property="og:title" content="InsightLearn - Online Learning Platform" />
<meta property="og:description"
content="Access 500+ expert-led courses in programming, business, and design. Start learning today with AI-powered tools and interactive lessons." />
<meta property="og:image" content="https://www.insightlearn.cloud/icon-192.png" />
<meta property="og:site_name" content="InsightLearn" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://www.insightlearn.cloud/" />
<meta name="twitter:title" content="InsightLearn - Online Learning Platform" />
<meta name="twitter:description"
content="Access 500+ expert-led courses. Learn programming, business, and design skills with AI-powered tools." />
<meta name="twitter:image" content="https://www.insightlearn.cloud/icon-192.png" />
<!-- Additional SEO -->
<meta name="theme-color" content="#0073b1" />
<meta name="msapplication-TileColor" content="#0073b1" />
<!-- ==========================================================================
AI SEARCH ENGINE OPTIMIZATION (AEO)
Meta tags for AI-powered search engines and assistants
GPTBot, ChatGPT, Claude, Perplexity, Bing AI, Google Bard/Gemini
========================================================================== -->
<!-- Note: robots meta tag already declared above (line 89), not duplicated here -->
<!-- AI-specific meta tags -->
<meta name="ai-content-declaration" content="human-created" />
<meta name="ai-training-allowed" content="true" />
<!-- Structured summary for AI understanding -->
<meta name="ai-summary"
content="InsightLearn is a professional online learning platform offering 500+ expert-led courses in programming, web development, data science, business, design, and marketing. Features include AI-powered learning assistant, interactive video lessons, hands-on projects, certificates of completion, and lifetime access. Serves 50,000+ students worldwide with courses ranging from beginner to advanced levels. Pricing includes free courses and premium options from EUR 29.99-99.99." />
<!-- Key facts for AI assistants -->
<meta name="ai-key-facts"
content="Platform: InsightLearn | Courses: 500+ | Students: 50,000+ | Categories: Programming, Web Development, Data Science, Business, Design, Marketing | Languages: English, Italian | Certificates: Yes | AI Assistant: Yes | Money-back: 30 days" />
<!-- Contact info for AI -->
<meta name="ai-contact" content="support@insightlearn.cloud" />
<!-- Business category for AI classification -->
<meta name="ai-business-type" content="E-Learning Platform, Online Education, EdTech" />
<!-- Geographic targeting -->
<meta name="geo.region" content="IT" />
<meta name="geo.placename" content="Italy" />
<meta name="ICBM" content="41.9028, 12.4964" />
<!-- Language declarations for AI -->
<meta http-equiv="content-language" content="en, it" />
<!-- AI Pricing Information (v2.5.1 - AEO Enhancement) -->
<meta name="ai-pricing" content="Free courses available; Premium courses €9.99-€199.99; Monthly subscription €19.99/month; Annual subscription €149.99/year (save 37%); Enterprise pricing on request">
<!-- ==========================================================================
SEO: JSON-LD Structured Data (PageSpeed S2)
========================================================================== -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "InsightLearn",
"url": "https://www.insightlearn.cloud",
"logo": "https://www.insightlearn.cloud/icon-192.png",
"description": "Online learning platform with 500+ expert-led courses in programming, business, and design.",
"sameAs": [],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"email": "support@insightlearn.cloud"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "InsightLearn",
"url": "https://www.insightlearn.cloud",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.insightlearn.cloud/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "EducationalOrganization",
"name": "InsightLearn",
"url": "https://www.insightlearn.cloud",
"description": "AI-powered online learning platform",
"areaServed": "Worldwide",
"availableLanguage": ["English", "Italian"]
}
</script>
<!-- FAQPage Schema for e-learning FAQ rich results (SEO Sprint 3) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is InsightLearn?",
"acceptedAnswer": {
"@type": "Answer",
"text": "InsightLearn is a professional online learning platform offering 500+ expert-led courses in programming, web development, design, business, and more. Our platform features AI-powered learning tools, interactive video lessons, and progress tracking to help you master new skills at your own pace."
}
},
{
"@type": "Question",
"name": "How do I access courses on InsightLearn?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Getting started is easy: 1) Create a free account on our platform, 2) Browse our course catalog or search for specific topics, 3) Enroll in courses - some are free, others require purchase, 4) Start learning immediately with unlimited access to enrolled courses, including video lessons, downloadable resources, and AI assistance."
}
},
{
"@type": "Question",
"name": "Do I need prior experience to take courses?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No prior experience is required for most beginner-level courses. Each course clearly indicates its skill level (Beginner, Intermediate, or Advanced) and any prerequisites. Our platform offers courses for all levels, from complete beginners to experienced professionals looking to advance their skills."
}
},
{
"@type": "Question",
"name": "Can I earn certificates after completing courses?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes! Upon completing a course, you receive a verified Certificate of Completion that you can add to your LinkedIn profile or resume. Certificates demonstrate your commitment to professional development and can help advance your career."
}
},
{
"@type": "Question",
"name": "How much do courses cost?",
"acceptedAnswer": {
"@type": "Answer",
"text": "InsightLearn offers both free and premium courses. Free courses provide great introduction content, while premium courses (typically €29.99-€99.99) include comprehensive materials, projects, quizzes, and certificates. We frequently offer discounts and promotions - check our courses page for current deals."
}
},
{
"@type": "Question",
"name": "Can I access courses on mobile devices?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes! InsightLearn is fully responsive and works on all devices - desktop computers, tablets, and smartphones. Learn anywhere, anytime with our mobile-optimized platform. Your progress syncs across all devices automatically."
}
},
{
"@type": "Question",
"name": "Is there an AI assistant to help with learning?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes! InsightLearn features an AI-powered chatbot assistant that can answer questions about course content, provide explanations, help with coding problems, and offer personalized learning recommendations. The AI assistant is available 24/7 to support your learning journey."
}
}
]
}
</script>
<!-- Favicon - Comprehensive declarations for Google Search visibility -->
<!-- Primary PNG favicons (Google Search compatible via manifest.json) -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.png" />
<link rel="icon" type="image/png" sizes="192x192" href="/icon-192.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/icon-192.png" />
<!-- Web App Manifest for PWA and Google Search favicon (REQUIRED) -->
<link rel="manifest" href="/manifest.json" />
<!-- ==========================================================================
PERFORMANCE: Resource Hints (PageSpeed P2, P7)
========================================================================== -->
<!-- DNS Prefetch for external domains -->
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com" />
<link rel="dns-prefetch" href="https://www.paypal.com" />
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
<!-- Preconnect for critical external resources -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin />
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin />
<!-- Preload Font Awesome fonts (critical for icons) -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2"
as="font" type="font/woff2" crossorigin="anonymous" />
<!-- ==========================================================================
CRITICAL CSS INLINE (Sprint 3 - FE-3 PageSpeed Optimization)
Above-the-fold styles for fast First Contentful Paint (FCP)
========================================================================== -->
<style>
/* CSS Custom Properties - Design Tokens */
:root {
--primary-color: #a435f0;
--primary-hover: #8710d8;
--primary-light: #f7ecff;
--gray-50: #f7f9fa;
--gray-100: #f2f3f5;
--gray-200: #e4e8eb;
--gray-300: #d1d7db;
--gray-500: #6b7280;
--gray-700: #3c4043;
--gray-900: #1c1d1f;
--white: #ffffff;
--header-height: 72px;
--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
--transition-fast: 150ms ease;
}
/* Critical Base Styles */
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: var(--font-family);
font-size: 16px;
line-height: 1.6;
color: var(--gray-900);
background-color: var(--gray-50);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
overflow-y: auto !important;
}
/* Critical Layout - Main Container */
.main-layout {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: var(--gray-50);
}
/* Critical Header - Sticky Positioning */
.main-header {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 10001;
width: 100%;
background-color: rgba(255, 255, 255, 0.98);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.main-header-container {
height: var(--header-height);
display: grid;
grid-template-columns: minmax(200px, auto) 1fr minmax(300px, auto);
align-items: center;
padding: 0 24px;
gap: 24px;
max-width: 1400px;
margin: 0 auto;
}
/* Loading Skeleton Styles */
.loading-skeleton {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 60vh;
padding: 2rem;
opacity: 1;
transition: opacity 0.3s ease-out;
}
.loading-skeleton.fade-out {
opacity: 0;
pointer-events: none;
}
.skeleton-header {
width: 100%;
max-width: 1200px;
height: 72px;
background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
background-size: 200% 100%;
animation: skeleton-shimmer 1.5s infinite;
border-radius: 8px;
margin-bottom: 2rem;
}
.skeleton-hero {
width: 100%;
max-width: 800px;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.skeleton-title {
width: 60%;
height: 48px;
background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
background-size: 200% 100%;
animation: skeleton-shimmer 1.5s infinite;
border-radius: 8px;
}
.skeleton-text {
width: 80%;
height: 24px;
background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
background-size: 200% 100%;
animation: skeleton-shimmer 1.5s infinite;
border-radius: 4px;
}
.skeleton-button {
width: 200px;
height: 48px;
background: linear-gradient(90deg, var(--primary-light) 25%, #e8d5f9 50%, var(--primary-light) 75%);
background-size: 200% 100%;
animation: skeleton-shimmer 1.5s infinite;
border-radius: 8px;
margin-top: 1rem;
}
.skeleton-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
width: 100%;
max-width: 1200px;
margin-top: 3rem;
}
.skeleton-card {
height: 280px;
background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
background-size: 200% 100%;
animation: skeleton-shimmer 1.5s infinite;
border-radius: 12px;
}
@keyframes skeleton-shimmer {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
/* Loading spinner fallback */
.blazor-loading-spinner {
width: 48px;
height: 48px;
border: 4px solid var(--gray-200);
border-top-color: var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 1rem;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.loading-text {
color: var(--gray-500);
font-size: 14px;
margin-top: 0.5rem;
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
.skeleton-header,
.skeleton-title,
.skeleton-text,
.skeleton-button,
.skeleton-card,
.blazor-loading-spinner {
animation: none;
}
}
</style>
<!-- ==========================================================================
CRITICAL CSS - Load synchronously (above-the-fold)
========================================================================== -->
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap Framework (critical) -->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<!-- Core Layout CSS (critical) -->
<link rel="stylesheet" href="css/site.css" />
<link rel="stylesheet" href="css/layout.css?v=2.4.15" />
<link rel="stylesheet" href="css/header-v2-fixed.css?v=2.4.7-final" />
<!-- B2B Enterprise Landing Page - CRITICAL: loads after base styles -->
<link rel="stylesheet" href="css/enterprise-b2b.css" />
<!-- Header Professional - CRITICAL: prevents Chrome FOUC (v2.3.8 fix) -->
<link rel="stylesheet" href="css/header-professional.css" />
<!-- NOTE: header-enhancements.css moved to END of CSS chain (after mobile-ux-fixes.css) for proper specificity -->
<!-- ==========================================================================
DEFERRED CSS - Load asynchronously (below-the-fold)
Using media="print" onload pattern for non-blocking CSS
========================================================================== -->
<!-- Design System CSS (deferred) -->
<link rel="stylesheet" href="css/design-system.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/design-system-base.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/design-system-components.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/design-system-dashboard.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/design-system-utilities.css" media="print" onload="this.media='all'" />
<!-- Component CSS (deferred) -->
<link rel="stylesheet" href="css/components.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/chatbot.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/cookie-consent-wall.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/gdpr-compact-mode.css" media="print" onload="this.media='all'" />
<!-- Professional UI Overrides - Udemy/Coursera/LinkedIn Style (v2.3.8) -->
<!-- NOTE: header-professional.css moved to CRITICAL section above to prevent Chrome FOUC -->
<link rel="stylesheet" href="css/gdpr-banner-professional.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/footer-professional.css" media="print" onload="this.media='all'" />
<!-- Page-specific CSS (deferred) -->
<link rel="stylesheet" href="css/auth-styles.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/modern-registration.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/homepage-modern.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/homepage-enhancements.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/new-home-2025.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/admin.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/admin-components.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/admin-dashboard.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/admin-instructors.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/admin-payments.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/courses.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/cart.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/checkout.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/video-components.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/smart-video-player.css" media="print" onload="this.media='all'" />
<!-- ==========================================================================
TAILWIND CSS CDN (v2.2.0 - Learning Space Refactoring)
Used for LinkedIn Learning style 4-column fixed layout
CVE Security: Pinned version v2.5.1 (was unpinned - security risk)
========================================================================== -->
<script src="https://cdn.tailwindcss.com/3.4.0"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'],
},
colors: {
'dark-navy': '#19212d',
'dark-navy-light': '#242d3a',
'linkedin-blue': '#0073b1',
}
}
}
}
</script>
<!-- LinkedIn Learning Style System (v2.1.0) - DEPRECATED, kept for backwards compatibility -->
<link rel="stylesheet" href="css/linkedin-learning-tokens.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/linkedin-learning-components.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/linkedin-learning-animations.css" media="print" onload="this.media='all'" />
<!-- Learning Space v3 MUST load AFTER linkedin-learning-components to override sidebar styles -->
<link rel="stylesheet" href="css/learning-space-v3.css" media="print" onload="this.media='all'" />
<!-- AI Chat Modern - ChatGPT/Udemy Style (v2.2.0) -->
<link rel="stylesheet" href="css/ai-chat-modern.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/pricing.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/account-subscription.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/instructor-earnings.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/profile.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/my-courses.css" media="print" onload="this.media='all'" />
<!-- Site-wide CSS (deferred) -->
<link rel="stylesheet" href="css/connection-handler.css" media="print" onload="this.media='all'" />
<link rel="stylesheet" href="css/app.css" media="print" onload="this.media='all'" />
<!-- Accessibility CSS - WCAG 2.1 AA Compliance (Sprint 2) -->
<link rel="stylesheet" href="css/accessibility.css" media="print" onload="this.media='all'" />
<!-- Global Responsive CSS - MUST load LAST to override everything -->
<link rel="stylesheet" href="css/responsive.css" media="print" onload="this.media='all'" />
<!-- Mobile Optimizations CSS - Cross-platform support (v2.2.0) -->
<link rel="stylesheet" href="css/mobile-optimizations.css" media="print" onload="this.media='all'" />
<!-- Mobile UX Critical Fixes - Auth buttons, text contrast, spacing (v2.2.5) -->
<link rel="stylesheet" href="css/mobile-ux-fixes.css" media="print" onload="this.media='all'" />
<!-- Header Enhancements - CRITICAL: fixes Categories dropdown, mobile menu (v2.3.16 fix) -->
<link rel="stylesheet" href="css/header-enhancements.css?v=2.4.15" media="print" onload="this.media='all'" />
<!-- Scoped Styles -->
<link href="InsightLearn.WebAssembly.styles.css" rel="stylesheet" media="print" onload="this.media='all'" />
<!-- RESPONSIVE FIXES 2026 - MUST LOAD ABSOLUTELY LAST for maximum specificity -->
<!-- Fixes: pixel widths to relative units, media queries for stacking, font readability -->
<link rel="stylesheet" href="css/responsive-fixes-2026.css?v=2.4.15" media="print" onload="this.media='all'" />
<!-- NoScript fallback for CSS -->
<noscript>
<link rel="stylesheet" href="css/design-system.css" />
<link rel="stylesheet" href="css/components.css" />
<link rel="stylesheet" href="css/responsive.css" />
<link rel="stylesheet" href="css/accessibility.css" />
<link rel="stylesheet" href="css/new-home-2025.css" />
<link rel="stylesheet" href="css/cookie-consent-wall.css" />
<link rel="stylesheet" href="css/gdpr-compact-mode.css" />
<link rel="stylesheet" href="css/gdpr-banner-professional.css" />
<link rel="stylesheet" href="css/header-professional.css" />
<link rel="stylesheet" href="css/footer-professional.css" />
<link href="InsightLearn.WebAssembly.styles.css" rel="stylesheet" />
<link rel="stylesheet" href="css/responsive-fixes-2026.css" />
</noscript>
<!-- PayPal SDK (Sandbox Mode - Deferred for better performance) -->
<!-- Note: Replace client-id with production key for live -->
<script defer src="https://www.paypal.com/sdk/js?client-id=sb¤cy=EUR&disable-funding=credit,card"></script>
<!-- CRITICAL: Layout Fixes - Inline to bypass CDN cache -->
<style id="critical-layout-fixes">
/* Mobile Menu Fix */
html body .mobile-menu-panel.open .mobile-menu-content,
.mobile-menu-panel.open .mobile-menu-content {
position: static !important;
transform: none !important;
-webkit-transform: none !important;
display: flex !important;
visibility: visible !important;
opacity: 1 !important;
width: 100% !important;
max-width: 100% !important;
flex-direction: column !important;
flex: 1 1 auto !important;
overflow-y: auto !important;
background: #ffffff !important;
transition: none !important;
}
/* Footer Logo Fix - Remove filter and show original logo colors */
.footer-logo-img {
background-color: transparent !important;
width: 50px !important;
height: 50px !important;
filter: none !important;
border-radius: 8px !important;
}
/* Header Logo Fix - Constrain size to prevent overflow */
.header-logo-section {
display: flex !important;
align-items: center !important;
height: 60px !important;
max-height: 60px !important;
overflow: hidden !important;
}
.header-logo-section .logo-image,
.main-header .logo-image {
width: auto !important;
height: 36px !important;
max-height: 36px !important;
max-width: 150px !important;
object-fit: contain !important;
}
.header-logo-section .logo-text {
font-size: 1.25rem !important;
white-space: nowrap !important;
}
</style>
</head>
<body>
<!-- Static GDPR wall shown immediately (before Blazor loads) -->
<div id="static-cookie-wall" class="cookie-wall-overlay" role="dialog" aria-modal="true"
aria-labelledby="cookie-wall-title" style="display: flex;">
<div class="cookie-wall-container">
<div class="cookie-wall-modal">
<div class="cookie-modal-content">
<div class="ai-avatar-section">
<div class="ai-avatar-container">
<div class="ai-hologram">
<div class="logo-container">
<img src="icon-192.png" alt="InsightLearn Logo" class="insightlearn-logo" />
</div>
<div class="ai-glow"></div>
</div>
</div>
<h3 class="ai-name">InsightLearn</h3>
<p class="ai-subtitle">Online Learning Platform</p>
<div class="ai-message">
<p>"Welcome to InsightLearn! We use cookies to personalize your learning experience."</p>
<p class="ai-message-secondary">"Your privacy matters! Please review our cookie policy."</p>
</div>
</div>
<div class="cookie-content-section">
<div class="cookie-wall-header">
<div class="cookie-logo-wrapper">
<img src="icon-192.png" alt="InsightLearn" class="gdpr-logo" />
</div>
<h1 class="cookie-wall-title">We value your privacy</h1>
<p class="cookie-wall-subtitle">
InsightLearn uses cookies to enhance your learning experience
</p>
</div>
<div class="cookie-wall-body">
<div class="cookie-simple-info">
<p class="cookie-description">
By clicking "Accept All Cookies", you agree to the storing of cookies on your device
to enhance site navigation,
analyze site usage, and assist in our marketing efforts. We respect your privacy and
are committed to protecting your data.
</p>
<div class="cookie-features-grid">
<div class="cookie-feature">
<span class="feature-icon">🔒</span>
<span class="feature-text">Secure & Encrypted</span>
</div>
<div class="cookie-feature">
<span class="feature-icon">⚡</span>
<span class="feature-text">Enhanced Performance</span>
</div>
<div class="cookie-feature">
<span class="feature-icon">🎯</span>
<span class="feature-text">Personalized Experience</span>
</div>
<div class="cookie-feature">
<span class="feature-icon">📊</span>
<span class="feature-text">Analytics & Insights</span>
</div>
</div>
</div>
</div>
<div class="cookie-wall-footer">
<div class="cookie-links">
<a href="/privacy-policy" target="_blank" class="cookie-link">Privacy Policy</a>
<span class="link-separator">•</span>
<a href="/cookie-policy" target="_blank" class="cookie-link">Cookie Policy</a>
</div>
<div class="cookie-actions">
<button class="btn-cookie-settings"
onclick="alert('Please wait for the application to load fully to access detailed settings.')">
<span class="btn-icon">⚙️</span>
Cookie Settings
</button>
<button class="btn-cookie-reject" onclick="rejectAllCookiesStatic()">
<span class="btn-icon">✕</span>
Reject All
</button>
<button class="btn-cookie-accept" onclick="acceptAllCookiesStatic()">
<span class="btn-icon">✓</span>
Accept All Cookies
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="app" style="opacity: 0; transition: opacity 0.3s;">
<!-- Loading Skeleton for better LCP (Sprint 3 - PageSpeed) -->
<div class="loading-skeleton" id="loading-skeleton">
<div class="skeleton-header"></div>
<div class="skeleton-hero">
<div class="skeleton-title"></div>
<div class="skeleton-text"></div>
<div class="skeleton-text" style="width: 60%;"></div>
<div class="skeleton-button"></div>
</div>
<div class="skeleton-cards">
<div class="skeleton-card"></div>
<div class="skeleton-card"></div>
<div class="skeleton-card"></div>
<div class="skeleton-card"></div>
</div>
<div class="blazor-loading-spinner"></div>
<p class="loading-text">Loading InsightLearn...</p>
</div>
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<!-- SEO: Static content for crawlers without JavaScript -->
<noscript>
<div class="seo-static-content"
style="max-width: 1200px; margin: 0 auto; padding: 40px 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
<h1 style="font-size: 2.5rem; color: #1c1d1f; margin-bottom: 20px;">InsightLearn - Professional Online
Learning Platform</h1>
<p style="font-size: 1.25rem; color: #6b7280; margin-bottom: 30px;">
Transform your career with InsightLearn. Access 500+ expert-led online courses in programming,
data science, business, and design. Join 50,000+ students worldwide.
</p>
<h2 style="font-size: 1.5rem; color: #1c1d1f; margin: 30px 0 20px;">Featured Course Categories</h2>
<ul
style="list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px;">
<li><a href="/courses?category=web-development" style="color: #a435f0; text-decoration: none;">Web
Development Courses</a></li>
<li><a href="/courses?category=data-science" style="color: #a435f0; text-decoration: none;">Data Science
Courses</a></li>
<li><a href="/courses?category=business" style="color: #a435f0; text-decoration: none;">Business
Courses</a></li>
<li><a href="/courses?category=design" style="color: #a435f0; text-decoration: none;">Design Courses</a>
</li>
<li><a href="/courses?category=programming" style="color: #a435f0; text-decoration: none;">Programming
Courses</a></li>
<li><a href="/courses?category=marketing" style="color: #a435f0; text-decoration: none;">Marketing
Courses</a></li>
</ul>
<h2 style="font-size: 1.5rem; color: #1c1d1f; margin: 30px 0 20px;">Popular Skills</h2>
<ul style="list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px;">
<li><a href="/courses?skill=python"
style="background: #f7ecff; color: #a435f0; padding: 8px 16px; border-radius: 20px; text-decoration: none;">Python</a>
</li>
<li><a href="/courses?skill=javascript"
style="background: #f7ecff; color: #a435f0; padding: 8px 16px; border-radius: 20px; text-decoration: none;">JavaScript</a>
</li>
<li><a href="/courses?skill=react"
style="background: #f7ecff; color: #a435f0; padding: 8px 16px; border-radius: 20px; text-decoration: none;">React</a>
</li>
<li><a href="/courses?skill=machine-learning"
style="background: #f7ecff; color: #a435f0; padding: 8px 16px; border-radius: 20px; text-decoration: none;">Machine
Learning</a></li>
<li><a href="/courses?skill=aws"
style="background: #f7ecff; color: #a435f0; padding: 8px 16px; border-radius: 20px; text-decoration: none;">AWS</a>
</li>
<li><a href="/courses?skill=sql"
style="background: #f7ecff; color: #a435f0; padding: 8px 16px; border-radius: 20px; text-decoration: none;">SQL</a>
</li>
</ul>
<h2 style="font-size: 1.5rem; color: #1c1d1f; margin: 30px 0 20px;">Why Choose InsightLearn?</h2>
<ul style="list-style: disc; padding-left: 20px; color: #6b7280;">
<li>500+ expert-led video courses</li>
<li>AI-powered learning assistant</li>
<li>Interactive exercises and projects</li>
<li>Certificates of completion</li>
<li>30-day money-back guarantee</li>
<li>Lifetime access to purchased courses</li>
</ul>
<p style="margin-top: 30px;">
<a href="/courses"
style="background: #a435f0; color: white; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: bold;">Explore
All Courses</a>
<a href="/register"
style="background: transparent; color: #a435f0; padding: 15px 30px; border: 2px solid #a435f0; border-radius: 8px; text-decoration: none; font-weight: bold; margin-left: 15px;">Start
Free Trial</a>
</p>
<footer style="margin-top: 50px; padding-top: 30px; border-top: 1px solid #e4e8eb;">
<p style="color: #6b7280;">
<a href="/about" style="color: #6b7280; margin-right: 20px;">About Us</a>
<a href="/contact" style="color: #6b7280; margin-right: 20px;">Contact</a>
<a href="/privacy-policy" style="color: #6b7280; margin-right: 20px;">Privacy Policy</a>
<a href="/terms-of-service" style="color: #6b7280;">Terms of Service</a>
</p>
<p style="color: #6b7280;">© 2025 InsightLearn. All rights reserved.</p>
</footer>
</div>
</noscript>
<!-- Show static GDPR wall immediately if no consent -->
<script>
// Functions for static GDPR wall (before Blazor loads)
function acceptAllCookiesStatic() {
var consentData = {
necessary: true,
analytics: true,
marketing: true,
functional: true,
timestamp: new Date().getTime()
};
localStorage.setItem('cookie-consent', JSON.stringify(consentData));
console.log('[STATIC-GDPR] Consent saved (Accept All)');
hideStaticWall();
}
function rejectAllCookiesStatic() {
var consentData = {
necessary: true,
analytics: false,
marketing: false,
functional: false,
timestamp: new Date().getTime()
};
localStorage.setItem('cookie-consent', JSON.stringify(consentData));
console.log('[STATIC-GDPR] Consent saved (Reject All)');
hideStaticWall();
}
function hideStaticWall() {
var staticWall = document.getElementById('static-cookie-wall');
if (staticWall) {
staticWall.style.display = 'none';
document.body.style.overflow = '';
console.log('[STATIC-GDPR] Static wall hidden, consent saved');
}
// Also hide any Blazor cookie wall overlay (in case Blazor already loaded)
// IMPORTANT: Do NOT hide the static-cookie-wall - only hide Blazor-generated overlays
var blazorWalls = document.querySelectorAll('.cookie-wall-overlay:not(#static-cookie-wall)');
blazorWalls.forEach(function (wall) {
wall.classList.add('hidden');
console.log('[STATIC-GDPR] Blazor wall hidden (not static wall)');
});
}
(function () {
// Check for existing consent immediately
var hasConsent = false;
try {
var consentData = localStorage.getItem('cookie-consent');
if (consentData) {
var consent = JSON.parse(consentData);
var now = new Date().getTime();
var expiryTime = consent.timestamp + (365 * 24 * 60 * 60 * 1000);
hasConsent = now <= expiryTime;
}
} catch (e) {
console.error('Error checking consent:', e);
}
// Cookie wall is visible by default (display:flex in HTML)
// Hide it ONLY if valid consent exists in localStorage
if (hasConsent) {
document.getElementById('static-cookie-wall').style.display = 'none';
console.log('[STATIC-GDPR] Valid consent found, hiding cookie wall');
} else {
console.log('[STATIC-GDPR] No valid consent, keeping cookie wall visible');
}
// Hide static wall when Blazor loads (Blazor component will take over)
window.addEventListener('DOMContentLoaded', function () {
setTimeout(function () {
var staticWall = document.getElementById('static-cookie-wall');
if (staticWall && !hasConsent) {
// Keep showing until Blazor component renders
console.log('[STATIC-GDPR] Blazor loaded, waiting for component...');
}
}, 100);
});
})();
</script>
<!-- HTTP Client Helper for cross-origin requests -->
<script src="js/httpClient.js"></script>
<!-- Device Detection - Cross-platform adaptive rendering (v2.2.0) -->
<script src="js/deviceDetection.js"></script>
<!-- ===== CROSS-BROWSER VIDEO LIBRARIES (v2.2.0-dev) ===== -->
<!-- These libraries enable video playback across all modern browsers -->
<!-- mpegts.js - MPEG-TS video playback support -->
<!-- Required for playing MPEG Transport Stream (.ts) videos in browser -->
<!-- CVE Security: SRI hash added v2.5.1 -->
<script defer src="https://cdn.jsdelivr.net/npm/mpegts.js@1.7.3/dist/mpegts.min.js"
integrity="sha384-Z2H/TjKWDNZA/2luGOnjLx9pcva7cK4VSWC+hZn78Kr5uG8YbMpxdz+wWXBMO6N/"
crossorigin="anonymous"></script>
<!-- hls.js - HLS (HTTP Live Streaming) support -->
<!-- Required for .m3u8 playlists (Apple HLS format, widely used for streaming) -->
<!-- CVE Security: SRI hash added v2.5.1 -->
<script defer src="https://cdn.jsdelivr.net/npm/hls.js@1.5.7/dist/hls.min.js"
integrity="sha384-1B+J55elPxu+trIhW7QThjZg3evX8C5P6zjB82Xnn46RKPAXpL+vkanRSjCidsJv"
crossorigin="anonymous"></script>
<!-- dash.js - MPEG-DASH support -->
<!-- Required for .mpd manifests (DASH format, open standard for adaptive streaming) -->
<!-- CVE Security: SRI hash added v2.5.1 -->
<script defer src="https://cdn.jsdelivr.net/npm/dashjs@4.7.4/dist/dash.all.min.js"
integrity="sha384-fl7i8WZxcPlF9b1503+Gm+izr/2hpilydj0i/DlQTIafROZ1NP4rAWjyl6p3s1ev"
crossorigin="anonymous"></script>
<!-- flv.js - FLV video playback support -->
<!-- Required for Flash Video (.flv) format playback without Flash plugin -->
<!-- CVE Security: SRI hash added v2.5.1 -->
<script defer src="https://cdn.jsdelivr.net/npm/flv.js@1.6.2/dist/flv.min.js"