-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchives.html
More file actions
68 lines (66 loc) · 2.48 KB
/
archives.html
File metadata and controls
68 lines (66 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset=utf-8>
<title>Malcolm Brooks | Archives</title>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="archives.css">
<link href="https://fonts.googleapis.com/css?family=Julius+Sans+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Notable" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">
</head>
<body>
<header>
<h1 id="name"><a href="index.html">Malcolm<br>Brooks</a></h1>
</header>
<div id="contentWrapper">
<ul id="navWrap">
<li><a href=titles.html>TITLES</a></li>
<li><a href=about.html>ABOUT</a></li>
<li><a href=archives.html>ARCHIVES</a></li>
<li><a href=contact.html>CONTACT</a></li>
</ul>
<button type="button" class="collapsible" id="interviewButton">Interviews</button>
<div class="content">
<h2 class="archiveName">Interview with Pia Lindstrom</h2>
<audio controls>
<source src="audio/brooksPia.MP3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<h2 class="archiveName">Montana Public Radio Interview</h2>
<audio controls>
<source src="audio/mtprBrooks.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<button type="button" class="collapsible">Videos</button>
<div class="content">
<div id="leftVidCol">
<div class="vidContainer">
<iframe width="854" height="480" src="https://www.youtube.com/embed/AM2KiblNyz4" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div id="rightVidCol">
<div class="vidContainer">
<iframe width="854" height="480" src="https://www.youtube.com/embed/ju6Hsc1PBE0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<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>
</html>