scrimba
Frontend Career Path
Web dev basics
Build a Birthday GIFt Site
Intro to audio and video part 3 (updated)
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Intro to audio and video part 3 (updated)
AboutCommentsNotes
Intro to audio and video part 3 (updated)
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>

<head>
<title>Tom on the Scrimba Podcast</title>
<link rel="stylesheet" href="index.css">
</head>

<body>
<audio controls>
<a href="media/audio/scrimbaPodTom.mp3">download audio</a>
<source src="media/audio/scrimbaPodTom.mp3" type="audio/mp3">
<source src="media/audio/scrimbaPodTom.wav" type="audio/wav">
</audio>
<video controls width="400" height="225">
<a href="media/video/scrimbaPodTom.mp4">download video</a>
<source src="media/video/scrimbaPodTom.mp4" type="video/mp4">
<source src="media/video/scrimbaPodTom.webm" type="video/webm">
</video>
</body>

</html>
Console
/index.html
-4:23