-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (66 loc) · 5.27 KB
/
index.html
File metadata and controls
82 lines (66 loc) · 5.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>My Learning Platform | Master Programming & Tech</title>
<meta name="description" content="Discover and master essential programming languages (C, C++, JavaScript) and basic tech concepts. Your roadmap to becoming a skilled developer."/>
<meta name="keywords" content="programming, C, C++, JavaScript, development roadmap, tech tutorials, coding courses, github basics"/>
<meta property="og:title" content="My Learning Platform | Master Programming & Tech"/>
<meta property="og:description" content="Discover and master essential programming languages and basic tech concepts. Your roadmap to becoming a skilled developer."/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="YOUR_WEBSITE_URL_HERE"/>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" type="image/png" href="book.png">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-gray-50 font-poppins">
<div class="container mx-auto p-4 md:p-10 flex flex-col min-h-screen">
<header class="mb-10 pt-4 pb-6 border-b border-gray-100 sticky top-0 bg-gray-50 z-20 shadow-sm">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center space-y-4 md:space-y-0">
<a href="#" class="text-3xl font-extrabold text-blue-700 hover:text-blue-800 transition-colors">
<span class="text-4xl">📚</span> My Learning Platform
</a>
<div class="relative w-full md:w-96">
<input type="text" id="searchInput" aria-label="Search learning topics" placeholder="Search categories, topics, or keywords..." class="w-full py-3 pl-5 pr-12 border border-gray-300 rounded-lg focus:outline-none focus:ring-4 focus:ring-blue-100 transition-shadow text-gray-700 shadow-md">
<button id="clearSearchBtn" aria-label="Clear search" class="absolute right-0 top-1/2 -translate-y-1/2 mr-3 text-gray-500 hover:text-gray-700 transition-colors hidden" style="display:none;">
×
</button>
</div>
</div>
<div id="dynamic-nav-bar" class="flex items-center space-x-4 mt-6 hidden">
<button id="backButton" class="text-gray-700 hover:text-blue-600 font-semibold py-2 px-4 rounded-full transition-colors flex items-center space-x-2 bg-white shadow-sm hover:shadow-md border border-gray-200" aria-label="Go back to main categories">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd" /></svg>
<span>Back to Categories</span>
</button>
<h2 id="currentCategoryTitle" class="text-3xl font-extrabold text-gray-800"></h2>
</div>
</header>
<section id="hero-section" class="mb-12 py-16 bg-gradient-to-r from-blue-50 to-indigo-50 rounded-3xl shadow-2xl text-center border-b-4 border-blue-200">
<h2 class="text-6xl font-extrabold text-gray-900 mb-4 tracking-tight">Your Roadmap to Coding Mastery</h2>
<p class="text-xl text-gray-600 max-w-4xl mx-auto mb-8">Explore structured learning paths, practical tutorials, and essential project resources in C, C++, and core developer tools. Start your journey today.</p>
<div class="flex justify-center space-x-4">
<button onclick="document.getElementById('searchInput').focus()" class="bg-blue-600 text-white text-xl font-semibold py-3 px-10 rounded-full shadow-lg hover:bg-blue-700 transition-all transform hover:scale-105 active:scale-95">
Start Exploring Now →
</button>
</div>
</section>
<section id="main-content" class="flex-grow">
<h3 id="category-section-title" class="text-2xl font-bold text-gray-700 mb-6 hidden">Explore Core Disciplines</h3>
<div id="content-container" class="grid gap-10 md:grid-cols-2 lg:grid-cols-3 mb-12">
</div>
<div id="noResultsMessage" class="hidden text-center text-xl text-gray-500 p-10 mt-10">
<p class="mb-4 text-4xl">🧐</p>
<p class="text-2xl font-semibold mb-2">Nothing found here!</p>
<p>No results match your current search. Try simplifying your keywords or checking the other categories.</p>
</div>
</section>
<footer class="mt-auto py-6 text-center text-gray-500 text-sm border-t border-gray-100">
<p>Developed for continuous learning. | <a href="#" class="hover:text-blue-600 transition-colors">Privacy</a> | <a href="#" class="hover:text-blue-600 transition-colors">Terms</a></p>
<p>© 2025 My Learning Platform. All rights reserved.</p>
</footer>
</div>
<script type="module" src="script.js"></script>
</body>
</html>