memos/web/index.html

15 lines
414 B
HTML
Raw Normal View History

2021-12-08 18:43:52 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2022-07-26 17:40:29 +03:00
<link rel="icon" href="/logo.png" type="image/*" />
2021-12-08 18:43:52 +03:00
<meta name="theme-color" content="#f6f5f4" />
2022-07-29 14:52:16 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
2021-12-08 18:43:52 +03:00
<title>Memos</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>