-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.82 KB
/
index.html
File metadata and controls
24 lines (24 loc) · 1.82 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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notación Polaca Postfija — Laboratorio Interactivo</title>
<meta name="description" content="Simulador interactivo para aprender evaluación de expresiones en Notación Polaca Postfija usando pilas en Python">
<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&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
<meta property="og:title" content="Notación Polaca Postfija — Laboratorio Interactivo">
<meta name="twitter:title" content="Notación Polaca Postfija — Laboratorio Interactivo">
<meta property="og:description" content="Simulador interactivo para aprender evaluación de expresiones en Notación Polaca Postfija usando pilas en Python">
<meta name="twitter:description" content="Simulador interactivo para aprender evaluación de expresiones en Notación Polaca Postfija usando pilas en Python">
<meta property="og:image" content="https://storage.googleapis.com/gpt-engineer-file-uploads/d8iUb22YJKQubYpeL4FbeCGlfa03/social-images/social-1773668481071-vector-illustration-icon-python-programming-260nw-1397241389.webp">
<meta name="twitter:image" content="https://storage.googleapis.com/gpt-engineer-file-uploads/d8iUb22YJKQubYpeL4FbeCGlfa03/social-images/social-1773668481071-vector-illustration-icon-python-programming-260nw-1397241389.webp">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:type" content="website">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>