forked from DoktaCrisis/TitaniumPhoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyt.html
More file actions
86 lines (82 loc) · 1.68 KB
/
yt.html
File metadata and controls
86 lines (82 loc) · 1.68 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<title>Titanium Unblocked YT</title>
<style>
a {
color: #0f5cd8;
text-decoration: none;
}
.ad {
font-size: 12px;
color: #aaa;
}
body {
font-family: sans-serif;
font-size: 16px;
margin: 0;
color: #161616;
}
.box {
margin: 15px 0px 15px 0px;
}
.bg {
background: #161616;
padding: 15px;
}
button {
width: 60px;
padding: 10px;
font-size: 16px;
float: right;
background: #161616;
color: #fff;
border: 1px solid #161616;
cursor: pointer;
outline: none;
}
button:hover {
background: #2e2e2e;
}
button:active {
background: #000000;
}
.c {
width: 720px;
margin: auto;
}
iframe {
background: #ccc;
border: none;
}
input {
width: 650px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
outline: none;
}
</style>
</head>
<body>
<div class="box">
<div class="c">
<h1>Titanium YT</h1>
<p>Titanium YT allows you to watch YouTube videos unblocked and unrestricted. Just enter a YouTube link or ID in the box below and click the "Go" button to play it.</p>
<noscript><p>You must have Javascript enabled.</p></noscript>
<input id="inp" placeholder="YouTube video URL or ID">
<button onclick="go();">Go</button>
</div>
</div>
<div class="bg">
<div class="c">
<iframe id="player" height="405" width="720" src="https://www.youtube-nocookie.com/embed/dQw4w9WgXcQ" allowfullscreen></iframe>
</div>
</div>
<div class="box">
<div class="c">
<p>Back to <a href="/">TitaniumNetwork</a></p>
</div>
</div>
<script src="yt.js"></script>
</body>
</html>