Monday, 6 February 2023

Create A Webpage Named Video.Html To Diaplay A Video File On Webpage & Plays Automatically With Controls.The Dimension Of Video Data Should Be 400 * 400 Pixels.

 

Create A Webpage Named Video.Html To Diaplay A Video File On Webpage & Plays Automatically With Controls.The Dimension Of Video Data Should Be 400 * 400 Pixels.

 

video.html

<html>

<body>

<video width="400" height="400" controls autoplay>

<source src="women.mp4" type="video/mp4">

</video>

<a href="video1.html">link to the second page</a>

</body>

</html>

             

 video1.html

<html>

<body>

<video width="400" height="400" controls autoplay>

<source src="rain.mp4" type="video/mp4">

</video>

</body>

 </html>