-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (24 loc) · 1.03 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
<!doctype html>
<html lang="en" dir="ltr">
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>Vue-Do</title>
<meta name="description" content="A to-do application build with Vue framework as a practice project.">
<meta name="author" content="Milan Radojević">
<link rel="canonical" href="https://mikister.github.io/to-do-vue-no-node/">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<!-- Local stylesheets -->
<link rel="stylesheet" href="main.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- Content displayed on page -->
<div id="app"></div>
<!-- Local javascript -->
<script type="module" src="main.js"></script>
</body>
</html>