scrimba
Frontend Career Path
Web dev basics
Build a Birthday GIFt Site
Intro to audio and video part 2
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 2
AboutCommentsNotes
Intro to audio and video part 2
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>
<!--
Challenge:
1. Display the video using <video> tags.
You will need to search online to find a way of making
the physical dimensions of the video in the browser manageable.
-->
</body>

</html>
Console
/index.html
-3:07