-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 1.52 KB
/
index.html
File metadata and controls
34 lines (29 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#4F46E5" />
<!-- Primary Meta Tags -->
<title>Visual Python Learning System</title>
<meta name="title" content="Visual Python Learning System">
<meta name="description" content="Learn Python through interactive visualizations. Sorting algorithms, fundamentals, and projects explained with animations.">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://mk-knight23.github.io/25-python-mixed-examples/">
<meta property="og:title" content="Visual Python Learning System">
<meta property="og:description" content="Learn Python through interactive visualizations. See algorithms work, step by step.">
<!-- Google Fonts - Fira Code/Sans for technical precision -->
<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=Fira+Code:wght@400;500;600;700&family=Fira+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
</head>
<body class="antialiased">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/frontend/src/main.tsx"></script>
</body>
</html>