AlbertRenzo's picture
pls complete all features
4d45ff8 verified
Raw
History Blame Contribute Delete
5.5 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intermediate 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="intermediate"></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">Intermediate Python Path</h1>
<p class="text-gray-600 mb-6">Advance your Python skills with object-oriented programming and basic Java integration.</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="layers" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold">OOP in Python</h3>
</div>
<p class="text-gray-600 mb-4">Learn classes, objects, inheritance, and polymorphism in Python.</p>
<a href="/module.html?id=oop" 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="cpu" class="text-green-600"></i>
</div>
<h3 class="text-xl font-semibold">Modules & Packages</h3>
</div>
<p class="text-gray-600 mb-4">Organize your code with modules, packages, and understand imports.</p>
<a href="/module.html?id=modules" 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="activity" class="text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold">Error Handling</h3>
</div>
<p class="text-gray-600 mb-4">Master try/except blocks and create custom exceptions.</p>
<a href="/module.html?id=error-handling" 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="git-merge" class="text-yellow-600"></i>
</div>
<h3 class="text-xl font-semibold">Basic Java Integration</h3>
</div>
<p class="text-gray-600 mb-4">Learn to call Java from Python using JPype and understand JVM basics.</p>
<a href="/module.html?id=java-integration" 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>