AlbertRenzo's picture
pls complete all features
4d45ff8 verified
Raw
History Blame Contribute Delete
5.48 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beginner Path | Python Pathfinder</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<div class="flex flex-col md:flex-row gap-8">
<custom-sidebar path="beginner"></custom-sidebar>
<div class="flex-1">
<div class="bg-white p-6 rounded-xl shadow-md mb-8">
<h1 class="text-3xl font-bold mb-4 text-blue-700">Beginner Python Path</h1>
<p class="text-gray-600 mb-6">Master Python fundamentals with our structured beginner learning path.</p>
<div class="bg-blue-50 p-4 rounded-lg border border-blue-200 mb-6">
<div class="flex items-center">
<i data-feather="info" class="text-blue-600 mr-2"></i>
<span class="font-medium">Your Progress: 0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
<div class="bg-blue-600 h-2.5 rounded-full" style="width: 0%"></div>
</div>
</div>
</div>
<div class="grid md:grid-cols-2 gap-6">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i data-feather="book" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold">Python Basics</h3>
</div>
<p class="text-gray-600 mb-4">Learn fundamental Python concepts like variables, data types, and basic operations.</p>
<a href="/module.html?id=py-basics" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-3 rounded-lg mr-4">
<i data-feather="code" class="text-green-600"></i>
</div>
<h3 class="text-xl font-semibold">Control Flow</h3>
</div>
<p class="text-gray-600 mb-4">Understand conditionals and loops to control program execution flow.</p>
<a href="/module.html?id=control-flow" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-3 rounded-lg mr-4">
<i data-feather="box" class="text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold">Functions</h3>
</div>
<p class="text-gray-600 mb-4">Learn to create reusable code with functions and understand scope.</p>
<a href="/module.html?id=functions" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-yellow-100 p-3 rounded-lg mr-4">
<i data-feather="database" class="text-yellow-600"></i>
</div>
<h3 class="text-xl font-semibold">Data Structures</h3>
</div>
<p class="text-gray-600 mb-4">Master lists, tuples, dictionaries, and sets for organizing data.</p>
<a href="/module.html?id=data-structures" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/sidebar.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>