-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
43 lines (37 loc) · 1.35 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
<!doctype html>
<html lang="en">
<head>
<title>
Playlist Randomizer - Playlist Shuffle Youtube up to 12000 videos
</title>
<meta charset="UTF-8" />
<meta
name="keywords"
content="youtube playlist randomizer shuffle random randomize"
/>
<link rel="shortcut icon" href="/assets/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap"
rel="stylesheet">
<meta name="mobile-web-app-capable" content="yes" />
<link rel="manifest" href="/manifest.json" />
<meta
name="description"
content="A web application to randomize/shuffle your Youtube Playlist up to 12000 videos"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google-site-verification" content="BA02pMmyFjywlwwC9YvsoB2Rp7n_TPYZ1ziCfIBvi2g" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LG8EQ8F165"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-LG8EQ8F165');
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>