FY B.sc IT Practical 2(E): Design a web page embedding with multimedia features.
Note: Download 'Video' and 'Audio' files and keep it in the same folder where the program is been saved.
<!DOCTYPE html>
<html>
<head>
<title>Multimedia</title>
</head>
<body>
Video File: <video width="240" height="320" controls>
<source src="myvideo.ogv" type="video/ogg">
<source src="myvideo.mp4" type="video/mp4">
<source src="myvideo.avi" type="video/avi">
<embed src="myvideo.mp4">
</video>
<br>
Audio File: <audio width="240" height="320" controls>
<source src="myaudio.ogv">
<source src="myaudio.mp4">
<source src="myaudio.avi">
<embed src="myaudio.mp4">
</audio>
</body>
</html>
Comments
Post a Comment