-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 954 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Todo App</title>
<meta property="og:type" content="website" />
<meta property="og:title" content="Список задач" />
<meta property="og:url" content="https://irinaryazanskaya.github.io/todo-list" />
<meta property="og:image" content="https://i.ibb.co/JBccfR3/todo-app.png" />
<meta property="og:locale" content="ru_RU" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<noscript>Для запуска приложения включите JavaScript</noscript>
</body>
</html>