-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial-python.html
More file actions
28 lines (28 loc) · 1.66 KB
/
Copy pathtutorial-python.html
File metadata and controls
28 lines (28 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ECLox | Python Practice</title>
<link rel="icon" href="https://yt3.googleusercontent.com/eLhH2cQa1E5KteF1WOgiIsof7XLLkQ-L1lYUMt5mzJe3RX_5qNqJiKJRRYg28S0ukP5XfwTF0O8=s160-c-k-c0x00ffffff-no-rj">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main class="page-shell">
<section class="glass-card page-card">
<div class="nav-row"><a class="ghost-button" href="tutorials.html">Back to tutorials</a><span class="badge">Python</span></div>
<p class="eyebrow">Learning page</p>
<h1>Python practice</h1>
<p class="subtle">Python is a beginner-friendly language for automation, logic, and simple app ideas.</p>
<div class="quick-grid">
<article class="mini-card"><h3>What it is</h3><p>Python is known for readable syntax, making it great for beginners and quick prototyping.</p></article>
<article class="mini-card"><h3>Core ideas</h3><p>Variables, loops, conditions, lists, and functions are the main fundamentals to practice.</p></article>
<article class="mini-card"><h3>Simple task</h3><p>Write a short script that prints a greeting, counts to five, and stores a favorite word.</p></article>
</div>
</section>
</main>
</body>
</html>