|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>Python Learning Repository</title> |
| 7 | + |
| 8 | + <!-- IMPORTANT: repo name included --> |
| 9 | + <link rel="stylesheet" href="/Python/assets/style.css" /> |
| 10 | +</head> |
| 11 | +<body> |
| 12 | + |
| 13 | + <header> |
| 14 | + <h1>Python Learning Repository</h1> |
| 15 | + <p>A structured, hands-on guide to mastering Python.</p> |
| 16 | + </header> |
| 17 | + |
| 18 | + <nav> |
| 19 | + <a href="/Python/">Home</a> |
| 20 | + <a href="/Python/basics/">Basics</a> |
| 21 | + <a href="/Python/advanced/">Advanced</a> |
| 22 | + <a href="/Python/projects/">Projects</a> |
| 23 | + <a href="/Python/ml/">Machine Learning</a> |
| 24 | + </nav> |
| 25 | + |
| 26 | + <main> |
| 27 | + <section> |
| 28 | + <h2>What this repository offers</h2> |
| 29 | + <ul> |
| 30 | + <li>Clear Python fundamentals</li> |
| 31 | + <li>Well-structured examples</li> |
| 32 | + <li>Real-world projects</li> |
| 33 | + <li>Machine learning workflows</li> |
| 34 | + <li>Interview-oriented explanations</li> |
| 35 | + </ul> |
| 36 | + </section> |
| 37 | + |
| 38 | + <section> |
| 39 | + <h2>Who this is for</h2> |
| 40 | + <p> |
| 41 | + This repository is designed for students, developers, and professionals |
| 42 | + who want a practical and structured approach to learning Python. |
| 43 | + </p> |
| 44 | + </section> |
| 45 | + |
| 46 | + <section> |
| 47 | + <h2>Getting started</h2> |
| 48 | + <ol> |
| 49 | + <li>Start with the Basics section</li> |
| 50 | + <li>Practice using the provided examples</li> |
| 51 | + <li>Build projects to reinforce learning</li> |
| 52 | + <li>Explore machine learning modules</li> |
| 53 | + </ol> |
| 54 | + </section> |
| 55 | + </main> |
| 56 | + |
| 57 | + <footer> |
| 58 | + <p> |
| 59 | + Maintained on GitHub · Updated regularly |
| 60 | + </p> |
| 61 | + </footer> |
| 62 | + |
| 63 | +</body> |
| 64 | +</html> |
0 commit comments