-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 805 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 805 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>YT Transcript Grabber</title>
<meta http-equiv="refresh" content="0; url=privacy.html" />
<link rel="canonical" href="https://digitalgods2.github.io/yt-transcript-grabber/privacy.html" />
<meta name="robots" content="noindex" />
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
margin: 0;
padding: 48px 24px;
text-align: center;
color: #333;
background: #fff;
}
a {
color: #cc0000;
}
</style>
</head>
<body>
<p>Redirecting to the <a href="privacy.html">privacy policy</a>…</p>
<script>
location.replace("privacy.html");
</script>
</body>
</html>