-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc.html
97 lines (93 loc) · 3.57 KB
/
misc.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
85
86
87
88
89
90
91
92
93
94
95
96
97
<!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="misc">
<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='another-wrapper' style="text-align: center;">
<div class="DM">
<iframe width="100%" height="960" allow="fullscreen" src="https://www.youtube.com/embed/NNFo92L2g_c"></iframe>
</div>
</div>
<div style='text-align: center;'>
<video id="neon" width="100%" height="315" controls>
<source src="files for site/Y2Mate.is - Ylona Garcia - Entertain Me (Official Music Video).mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<img src="files for site/maxresdefault.jpg" alt="Hula Hoop" class="images" style="text-align:center">
<br />
<div style="text-align: center;">
<audio controls id='myaudio' loop>
<source volume='50%' style='color:crimson' src='files for site/LOONA 今月の少女 Hula Hoop.mp3' type='audio/mpeg'>
</audio>
</div>
<div id="siesta" style='text-align: center;'>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/0Lv8nIY6aeJfERMDVTBKHb?utm_source=generator"
width="100%" height="80" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"></iframe>
</div>
</body>
</html>
<!-- JavaScript -->
<script>
var audio = document.getElementById("myaudio");
audio.volume = 0.2;
</script>
<script>
var siesta = document.getElementById("siesta");
siesta.volume = 0.2;
</script>
<script>
var neon = document.getElementById("neon");
neon.volume = 0.2;
</script>
<script>
function toggleForMobile(menu) {
menu.classList.toggle('open')
}
</script>