Computer Science, asked by GargiPandiya2008, 6 months ago

Write the HTML code to insert anyone image and one video.

Answers

Answered by Sriharish2611
1

Answer:

For inserting image

using img tag,

<img src="/html/images/test.png" alt="Simply Easy Learning" width="200" height="80">

For inserting video

using video tag,

<video width="320" height="240" controls>

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

Your browser does not support the video tag.

</video>

Hope this helps you...

See more at w3schools.com

Similar questions