..
Write the same code in a note pad or other text editor and save it with html extention. Open the saved file on your google crome or Mozila browser to see the output.
- <!DOCTYPE html>
- <html>
- <head>
- <title>Gyan Tutorial Example</title>
- </head>
- <body>
- <p>Give the exact location of the audio file</p>
- <p>Audio file type must be browser supportive as mention in the table</p>
- <audio controls>
- <source src="zoom/gyan.ogg" type="audio/ogg">
- <source src="music/idea.mp3" type="audio/mpeg">
- Your browser does not support the audio element
- </audio>
- </body>
- </html>