summaryrefslogtreecommitdiff
path: root/lessons/biologi/reproduction/video-demonstrasi-proses-reproduksi.html
blob: c11f53bc2bf23b0e9995062bd3319be332628647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<h1 id="heading">Demonstrasi Proses Reproduksi (Manusia)</h1>
<p id="text">For education purposes (explicit content warning)</p>
<video id="video" width="1280" height="720" controls>
    <source src="/assets/videos/video.mp4" type="video/mp4">
    Your browser does not support the video tag.
</video>

<script>
    const video = document.getElementById("video");
    const text = document.getElementById("text");
    const heading = document.getElementById("heading");

    video.addEventListener("play", (event) => {
        text.innerHTML = "get rickrolled lol<br><a href='introduction.html'>(click here to go back)</a>";
        heading.innerHTML = "Shame on you.";
    });
</script>