-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="public/logo.svg" type="image/x-icon" />
<!-- Primary Meta Tags -->
<title>DativeJs — A micro UI JavaScript framework</title>
<meta name="title" content="DativeJs — A micro UI JavaScript framework">
<meta name="description" content="DativeJs is a Javascript framework for building website and webapps just like the big guy VueJs">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://dativejs.js.org/">
<meta property="og:title" content="DativeJs — A micro UI JavaScript framework">
<meta property="og:description" content="DativeJs is a Javascript framework for building website and webapps just like the big guy VueJs">
<meta property="og:image" content="https://dativejs.js.org/public/logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://dativejs.js.org/">
<meta property="twitter:title" content="DativeJs — A micro UI JavaScript framework">
<meta property="twitter:description" content="DativeJs is a Javascript framework for building website and webapps just like the big guy VueJs">
<meta property="twitter:image" content="https://dativejs.js.org/public/logo.png">
<link rel="stylesheet" href="src/docute.css">
</head>
<body>
<div id="app"></div>
</body>
<script src="src/docute.js"></script>
<script src="main.js"></script>
</html>