-
Notifications
You must be signed in to change notification settings - Fork 0
/
tv.html
84 lines (77 loc) · 3.36 KB
/
tv.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="menu.css">
<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=Nunito+Sans:wght@200;300;400&display=swap" rel="stylesheet">
<title>TV</title>
</head>
<body>
<div class="menu-wrap">
<input type="checkbox" class="toggler">
<div class="hamburger"><div></div></div>
<div class="menu">
<div>
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About</a></li>
<li><a href="tv.html">TV</a></li>
<li><a href="posts.html">Blog</a></li>
<li><a href="socials.html">Socials</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</div>
</div>
</div>
</div>
<header class="showcase">
<div class="container">
<br><br><br>
<h2>TV </h2>
<strong>Live</strong><br>
<script src= "https://player.twitch.tv/js/embed/v1.js"></script>
<div id="<player div ID>"></div>
<script type="text/javascript">
var options = {
width: "50%",
height: "100%",
channel: "cobaltclaudia",
collection: "<collection ID>",
};
var player = new Twitch.Player("<player div ID>", options);
player.setVolume(0.5);
</script>
<br>
<strong>Vlogs </strong><br>
<iframe width="50%" height="100%"
src="https://www.youtube-nocookie.com/embed/videoseries?list=PLCGm6J8ag4RUwqnLCAgi6mLnVoY-PG61i"
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write;
encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br><br>
<strong>Coding </strong><br>
<iframe width="50%" height="100%"
src="https://www.youtube-nocookie.com/embed/videoseries?list=PLCGm6J8ag4RU4-VofsWNDYiw4IlBVgnVd"
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write;
encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br><br>
<strong>Books</strong><br>
<iframe width="50%" height="100%"
src="https://www.youtube-nocookie.com/embed/videoseries?list=PLCGm6J8ag4RXpD3itcdamJUacgsHF6i56"
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write;
encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br><br>
<strong>Tutorials</strong><br>
<iframe width="50%" height="100%"
src="https://www.youtube-nocookie.com/embed/videoseries?list=PLCGm6J8ag4RVNxxQ0_XGucjsVJXztrJV7"
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write;
encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br><br>
</div>
</header>
</body>
</html>