-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (94 loc) · 2.69 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
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
98
99
100
101
102
103
<!doctype html>
<link rel="icon" href="Images/Birb.jpg">
<html lang="en">
<head>
<meta charset="utf-8">
<title>Birb</title>
</head>
<style>
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.collapsible {
}
.content {
max-height: 0;
overflow: hidden;
}
</style>
</body>
<img src="Images/BirbBanner.jfif" alt="Birb" class="center">
<h1>Birb website</h1>
<button type="button" class="collapsible">RADIO</button>
<div class="content">
<a href="https://www.radiotrondelag.no/" target="_blank">RADIO TRØNDELAG</a>
<div class="radio">
<audio controls src="https://nettradio.radiotrondelag.no:8443/radio_trondelag" autoplay id="myAudio">
Your browser does not support the
<code>audio</code> element.
</audio>
</div>
</div>
<br>
<br>
<ul>
<a href="https://www.youtube.com/watch?v=F01jjkZ8g8I&feature=youtu.be" target="_blank">mitt goal</a>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<p>Social Media</p>
<ul>
<li><a href="https://www.youtube.com/channel/UC70JYZQolWImRJq0sG0HxNQ"target="_blank">Youtube</a></li>
</a>
<li><a href="https://www.instagram.com/birby682birb/"target="_blank">Instagram</a></li>
<li><a href="https://twitter.com/Tracenji"target="_blank">Twitter</a></li>
<li><a href="http://steamcommunity.com/profiles/76561198169612010"target="_blank">Steam</a></li>
<br>
<br>
<a href="favorites">Favorites</a>
</ul>
<button type="button" class="collapsible">Discord Server</button>
<div class="content">
<iframe src="https://discord.com/widget?id=788920381779214387&theme=light" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
<button type="button" class="collapsible">Image Gallery</button>
<div class="content">
<iframe src="gallery.html" width="100%" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</body>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
</script>
<body>
<script>
// function goPlay(){
// console.log("in goplay")
setTimeout(() => {
var x = document.getElementById("myAudio");
// function playAudio() {
x.play();
},
0
)
// }
</script>
</body>
</html>
<br>
<br>
v.0.1.0