15.
Add the correct boolean attribute to specify that the video will automatically start playing as soon as possible.
<video width="320" height="240" controls _______>
<source src="video.mp4" type="video/mp4">
</video>
start
autoplay
play
auto
Correct: B
The correct boolean attribute to specify that the video will automatically start playing is autoplay. This attribute ensures that the video begins playing as soon as the page loads.