Skip to main content

Posts

Showing posts from September, 2019

audio tag

<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML audio Tag</title> </head> <body> <audio controls="controls" src="https://www.tutorialrepublic.com/examples/audio/birds.mp3">         Your browser does not support the HTML5 audio element.     </audio> </body> </html>                            

video tag in html

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="utf-8">     <title>Embedding Video into an HTML Page</title> </head> <body> <video controls="controls" src="https://www.tutorialrepublic.com/examples/video/shuttle.mp4">         Your browser does not support the HTML5 Video element.     </video> <html lang="en"> <head>     <meta charset="utf-8">     <title>YouTube Video</title> </head> <body>     <iframe width="560" height="315"  src="https://www.tutorialrepublic.com/examples/video/shuttle.mp4" frameborder="0" allowfullscreen></iframe> </body> </html> </body> </html>