Whats Up! Guys today we are going to discuss very important Part of HTML5 training in this class we'll learn how to use Video & Audio Files in a Web Page without using Embed tag.Because it is an old tag and we are discussing new tags.
lets see the code:
Now If need any clearness then wait for video till it upload.lets see the code:
<!DOCTYPE html>
<html>
<head>
<title>Video & Audio | Tutting City</title>
<meta charset="utf-8" />
</head>
<body>
<h1>HTML5 Class 16 (Video and Audio)</h1>
<h2>Demo Video:</h2>
<video width="600" height="400" controls>
<source src="Video.mp4" type="video/mp4">
</video>
<h3>Demo Audio:</h3>
<audio controls>
<source src="Audio.mp3" type="audio/mpeg"> </source>
</audio>
</body>
</html>
0 comments:
Post a Comment