-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
24 lines (24 loc) · 1.18 KB
/
editor.html
File metadata and controls
24 lines (24 loc) · 1.18 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">
<meta property="og:title" content="CodeShelf — Editor de Fuentes">
<meta property="og:description" content="Editor de fuentes pixel art. Dibuja y exporta tu propia tipografía.">
<meta property="og:image" content="https://tu-dominio.com/og-preview.png">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<title>Codeshelf | Editor</title>
<!-- Script inline para aplicar el tema ANTES de que cargue el CSS y evitar flash -->
<script>(function(){var t=localStorage.getItem('cs-theme')||'light';document.documentElement.className=t;}());</script>
<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=Space+Mono:wght@400;700&family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="src/shared.css">
</head>
<body>
<div id="root"></div>
<script src="src/env.js"></script>
<script type="module" src="src/App.js"></script>
</body>
</html>