0 votes
20 views
in Computer Science by (8.5k points)
Write any two ways to add a video file in a web page using HTML? Explain with sample code.

1 Answer

0 votes
by (56.5k points)
 
Best answer
I. Using <EMBED> tag

<EMBED SRC = "WORDS.MP4" >

II. Using <Video> tag

< VIDEO controls>

 <source src="horse.mp4" >

Horse.mp4

<//VIDEO>
...