JSFiddle - React, Tailwind, and code Playground

by Kyle Pennell

HTML

<h1>HTML5 Multimedia</h1>

<h2>AUDIO</h2>
<audio controls>
    <source src="http://www.archive.org/download/bolero_69/Bolero.mp3" type="audio/mpeg" />
    <source src="http://playground.html5rocks.com/samples/html5_misc/rushus-modal_blues.ogg" type="audio/ogg" />
    AUDIO tag not supported
</audio>

<h2>VIDEO</h2>
<video poster="http://media.w3.org/2010/05/sintel/poster.png" controls>
    <source id="mp4" src="http://media.w3.org/2010/05/sintel/trailer.mp4" type="video/mp4" />
    <source id="webm" src="http://media.w3.org/2010/05/sintel/trailer.webm" type="video/webm" />
    <source id="ogv" src="http://media.w3.org/2010/05/sintel/trailer.ogv" type="video/ogg" />
    VIDEO tag not supported
</video>