-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.48 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width,user-scalable=no" />
<meta name="theme-color" content="#ddf9ff" />
<!-- Primary Meta Tags -->
<title>ToDo</title>
<meta name="title" content="ToDo" />
<meta
name="description"
content="A simple todo list application. It allows to create, manage, and track tasks."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://todo.vishakh.fun" />
<meta property="og:title" />
<meta
property="og:description"
content="A simple todo list application. It allows to create, manage, and track tasks."
/>
<meta property="og:image" content="https://todo.vishakh.fun/todopre.png" />
<!-- Twitter -->
<meta
property="twitter:card"
content="https://todo.vishakh.fun/todopre.png"
/>
<meta property="twitter:url" content="https://todo.vishakh.fun" />
<meta property="twitter:title" content="ToDo" />
<meta
property="twitter:description"
content="A simple todo list application. It allows to create, manage, and track tasks."
/>
<meta
property="twitter:image"
content="https://metatags.io/images/meta-tags.png"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>