-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube vids.html
83 lines (81 loc) · 3.1 KB
/
youtube vids.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Playground Website</title>
<link href="main.css" rel="stylesheet">
</head>
<body class="youtube_vids">
<header>
<div id="brand">
<a href="https://github.com/bdls-jamal/bdls-jamal.github.io" target="_blank">
<img src="files for site/takashihypebeast.jpg" alt="Takashi Hype" class="pfp">
</a>
</div>
<nav>
<ul id="nav">
<li id="main_link">
<a href="index.html">Home</a>
</li>
<li>
<a href="youtube vids.html">Cool Youtube Videos</a>
</li>
<li>
<a href="baenyebe.html">baenyebe Recent Uploads</a>
</li>
<li>
<a href="misc.html">Misc Nonsense</a>
</li>
</ul>
</nav>
<div id="mobile-nav" onclick="toggleForMobile(this)">
<div class='item1'></div>
<div class="item2"></div>
<div class="item3"></div>
<ul class="for_mobile">
<li id="main_link">
<a href="index.html">Home</a>
</li>
<li>
<a href="youtube vids.html">Cool Youtube Videos</a>
</li>
<li>
<a href="baenyebe.html">baenyebe Recent Uploads</a>
</li>
<li>
<a href="misc.html">Misc Nonsense</a>
</li>
</ul>
</div>
</header>
<br />
<div class="wrapper" style="text-align: center;">
<div class="one">
<iframe width="100%" height="315" allow='fullscreen' src='https://www.youtube.com/embed/RjqVh2rZsog'></iframe>
</div>
<div class="one">
<iframe width="100%" height="315" allow='fullscreen' src="https://www.youtube.com/embed/ZHm8c6vtTF8"></iframe>
<!--mpTb7loGos8, -->
</div>
</div>
<div class="wrapper2" style="text-align: center; margin-bottom: 200px;">
<div class='two'>
<iframe width="100%" height="315" allow='fullscreen' src="https://www.youtube.com/embed/8BZb-60VYHI"></iframe>
<!--bKbNznyuLG0-->
<!--5oY1oGreu3Y: winter part in dream come true-->
</div>
<div class="two">
<iframe width="100%" height="315" allow='fullscreen' src='https://www.youtube.com/embed/Mk50pyLj5Lw'></iframe>
<!--VCExAIL00EM-->
<!--H69tJmsgd9I: full dreams come true song-->
</div>
</div>
</div>
</body>
</html>
<!-- JavaScript -->
<script>
function toggleForMobile(menu) {
menu.classList.toggle('open')
}
</script>