-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link type="image/png" sizes="16x16" rel="icon" href="/list-16.png" />
<link type="image/png" sizes="32x32" rel="icon" href="/ist-32.png" />
<link type="image/png" sizes="96x96" rel="icon" href="/list-96.png" />
<meta name="description" content="To do list proudly made with Svelte web framework" />
<meta name="keywords" content="HTML, CSS, JavaScript, Svelte, Sass" />
<meta name="author" content="thaboRach" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To Do List</title>
<!-- OpenGraph meta tags -->
<meta property="og:title" content="To Do List" />
<meta property="og:description" content="To do list proudly made with Svelte web framework" />
<meta property="og:url" content="https://thaborach.github.io/svelte-todo-list/" />
<meta property="og:image" content="https://thaborach.github.io/svelte-todo-list/list-96.png" />
<meta property="og:type" content="website" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>