Valid 70-480 Dumps shared by ExamDiscuss.com for Helping Passing 70-480 Exam! ExamDiscuss.com now offer the newest 70-480 exam dumps, the ExamDiscuss.com 70-480 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 70-480 dumps with Test Engine here:
You are creating an HTML5 application that allows users to play video on a page by using the VIDEO element. You need to enable the user to start, stop, and pause the video. Which line of code should you add to the page?
Correct Answer: B
Explanation/Reference: Explanation: The HTML <video> Element To show a video in HTML, use the <video> element: The controls attribute adds video controls, like play, pause, and volume. Example <video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> Your browser does not support the video tag. </video> Reference: HTML5 Video