in Computer Applications by (1.9k points)
Rajat, a web developer, wants to show a video named “tiger.mp4” in dimensions of 300px width and 200px height on the web page. Help Rajat by writing its html code.

1 Answer

0 votes
by (17.5k points)
 
Best answer

HTML code to add a video in a web page:

<video width="300" height="200" controls>

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

</video>

...