summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.2.audio/11.2.index.html
blob: 77739e4638b1cb1a82f50d287eaf6d1566b08d4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Podcast</title>
    </head>
    <body>
        <h1>Web Design Podcast</h1>
        <audio controls>
            <!--I usually put ogg first because of better compression-->
            <source src="11.2.podcast.ogg" type="audio/ogg">
            <source src="11.2.podcast.mp3" type="audio/mpeg">
            <a href="11.2.podcast.mp3">download the Podcast</a> (MP3)
        </audio>
        <br>
        <a href="11.2.podcast.txt">Podcast Transcript</a>
    </body>
</html>