odin-codespace/cv-project/index.html

20 lines
651 B
HTML
Raw Normal View History

2024-06-15 08:31:44 -04:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2024-06-22 13:17:36 -04:00
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
2024-06-22 18:35:58 -04:00
<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+Tight:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
2024-06-15 08:31:44 -04:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-06-22 13:17:36 -04:00
<title>CV-Creator</title>
2024-06-15 08:31:44 -04:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>