HTML Audio/Video

 

Ex-

<!DOCTYPE html>

<html>

<head>

<title>My Website</title>


<script type="text/javascript" src="jquery-3.2.1.min.js"></script>

        <script type="text/javascript" src="js\bootstrap.min.js"></script>

        <link rel="stylesheet" type="text/css" href="css\bootstrap.min.css">

</head>

<body style="background-color: #ff0066;">

<div class="container">

<h1>Audio Example</h1>

<audio controls>

            <source src="song\KOI TUMSA NAHIN.ogg" type="audio/ogg">

            <source src="song\KOI TUMSA NAHIN.mp3" type="audio/mpeg">

            Your browser does not support the audio element.

</audio><br><br><br>



<h1>Video Example</h1>

<video width="320" height="240" controls>

                <source src="song\Piper.mp4" type="video/mp4">

                <source src="song\Piper.ogg" type="video/ogg">

                Your browser does not support the video tag.

</video>   

</div>

   

</body>

</html>

 Result-