Try to style Html5 <audio> and <video>
Before HTML5, audio files could only be played in a browser with a plug-in (like flash).
the HTML5 <audio> element specifies a standard way to embed audio in a web page.
<audio controls preload="metadata">
<source src="https://www.w3schools.com/html/horse.ogg" type="audio/ogg">
</audio>
Before HTML5, a video could only be played in a browser with a plug-in (like flash).
The HTML5 <video> element specifies a standard way to embed a video in a web page.
<video controls preload="metadata">
<source src="https://www.w3schools.com/html/movie.mp4" type="video/mp4">
<source src="https://www.w3schools.com/html/movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>