mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 07:19:26 +00:00
Background images added and styled. Also added a font family to the index.html: anaheim from bunnyfonts.
15 lines
510 B
HTML
15 lines
510 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="preconnect" href="https://fonts.bunny.net" />
|
|
<link href="https://fonts.bunny.net/css?family=anaheim:400,600,800" rel="stylesheet" />
|
|
<title>Vite + Vue</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|