-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.91 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
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Icon -->
<link rel="icon" href="/favicon.ico" />
<!-- General -->
<meta
name="description"
content="Analyze YouTube playlists and videos. Get common data like total duration, date, channels, views, likes ...etc"
/>
<meta name="robots" content="index,follow" />
<!-- Open graph -->
<meta property="og:type" content="website" />
<!--meta property="og:url" content="https://ytpyzer.netlify.app" /-->
<meta property="og:title" content="YTPyzer - YouTube playlist analyzer" />
<meta
property="og:description"
content="Analyze YouTube playlists and videos. Get common data like total duration, date, channels, views, likes ...etc"
/>
<meta property="og:image" itemprop="image" content="/favicon.ico" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<!--meta property="twitter:url" content="https://ytpyzer.netlify.app" /-->
<meta
property="twitter:title"
content="YTPyzer - YouTube playlist analyzer"
/>
<meta
property="twitter:description"
content="Analyze YouTube playlists and videos. Get common data like total duration, date, channels, views, likes ...etc"
/>
<meta property="twitter:image" content="/favicon.ico" />
<title>YTPyzer - YouTube playlist analyzer</title>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<section id="app"></section>
<script type="module" src="/src/main.js"></script>
</body>
</html>