-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 2.15 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
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>YouTube Unbl*cked</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<!-- Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QR0J225RDB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QR0J225RDB');
</script>
</head>
<body>
<h1 class="center">YouTube Unbl*cked</h5>
<div class=center>
<h3>Insert YouTube Link:</h3>
<input id="url" type="text" placeholder="" required>
<button id="submit" class="submit-button">Watch</button>
</div>
<br>
<div id="instructions" class="center">
<hr style="width:25% !important">
<h3>About</h3>
<p>Use to get around blocks, and watch YouTube without ads and (mostly) tracker free! Just paste in the link and click Watch!</p>
<h3>Not Working?</h3>
<p>Make sure there isn't anything funky at the end of the link, just the video ID!</p>
</div>
<div id="video-holder-holder">
<div id="video-holder" class="center" style="display:none;">
<hr>
<iframe id="video" src="https://www.youtube-nocookie.com/embed/dQw4w9WgXcQ?wmode=transparent&iv_load_policy=3&autoplay=0&html5=1&showinfo=0&rel=0&modestbranding=1&playsinline=0&theme=light" frameborder="0" scrolling="no" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe>
</div>
</div>
<hr class="space">
</body>
<footer class="center">
<br>
<hr>
<p>Made by <a class="linelink" href="https://jcwyt.com" target="_blank">jcwyt.com</a><br>
Join our <a class="linelink" href="https://jcwyt.com/discord" target="_blank">Discord Server!</a></p>
</footer>
<script src="script.js"></script>
</html>