Identify the error in this fragment:
<video controls> <source src="film.avi" format="video/avi"> </video>
The attribute format is not correct.
format
The <video> tag cannot have the controls attribute.
<video>
controls
The "avi" format is not supported by the <video> tag.
The "video/avi" type is not valid.