SOP. 6/CHP 1 IT 12TH COMMERCE

 Question . 6

Create a webpage named video.html to display a video file on web page and plays automatically with controls. The dimension of video area should be 150* 150 pixels.

Create another webpage which provide multiple source file formats for the same audio file that plays a sound automatically with controls.The dimen- sion of video area should be 100* 100 pixels. The browser should display the message with appropriate attribute when audio file is not supported by browser. The code must incorporate the list of video files formats (like webM, MP4 or ogg etc).

Coding for the following question:-

Video 1

<html>

<head>

<title>video with control</title>

</head>

<body>

<video src=atom.mp4 type=video/mp4 controls autoplay height=150px width=150px>

</video>

</body>

</html>


Video 2

<html>

<head>

<title>video with  autoplay</title>

</head>

<body>

<video controls autoplay height=100px width=100px>

<source src=auto.mp4 type=video/mp4>

</video>

</body>

</html>

Then save the file

Video 1 as video1.HTML

Video 2 as video2.HTML


Output for the following code:-

Video 1

Video 2

Comment below and share to your Friends and you can also give suggestion regarding my blog below and follow me to get blog daily .

Comments

Post a Comment