Tanya wants to include an instructional video with all its controls on her office website. The dimensions of the video are as follows: width=260, height=200. What code should tanya use to insert the video?

Answer:
Explanation:
In this scenario the two pieces of code that Tanya is missing would be controls and type. Controls adds the necessary video player controls while type signals what type of content will be playing. Therefore, the entire code snippet should be the following
<video width="320" height="240" controls>
<video src="file name.mp4" type="video/mp4">
</video>