






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
A comprehensive guide on how to incorporate multimedia elements such as videos, audio, and plug-ins into html web pages. It covers the basics of html multimedia, including the use of the video and audio elements, as well as the embed and object tags for plug-ins. The document also explains the controls attribute, the source element, and the supported formats for videos and audio. Additionally, it demonstrates how to embed youtube videos and pdf files into web pages.
Typology: Slides
1 / 12
This page cannot be seen from the preview
Don't miss anything!







Contents
Playing Videos in HTML ■ (^) The controls attribute adds video controls, like play, pause, and volume. ■ The text between the and tags will only be displayed in browsers that do not support the element. ■ To start a video automatically use the autoplay attribute. It does not work in mobile devices like iPad and iPhone. Chromium browsers also do not allow autoplay in most cases. However, muted autoplay is always allowed. Add muted after autoplay to let your video start playing automatically (but muted): ■ (^) Note that: (^) Only MP4, WebM, and Ogg video are supported by the HTML standard. (^) The tag specifies text tracks for or elements.
Your browser does not support the video tag.
Element ■ The controls attribute adds audio controls, like play, pause, and volume. ■ (^) The text between the and tags will only be displayed in browsers that do not support the element. ■ Note that: (^) Only MP3, WAV, and Ogg audio are supported by the HTML5 standard. ■ (^) The element allows you to specify alternative audio files which the browser may choose from. The browser will use the first recognized format.
Youtube Videos in &
OR
HTML Plug-ins ■ (^) The purpose of a plug-in is to extend the functionality of a web browser. ■ (^) Examples of well-known plug-ins are Java applets. ■ (^) Plug-ins can be added to web pages with the tag or the tag. ■ It is used to embed plug-ins (like Java applets, PDF readers, Flash Players) in web pages.
Embed Pdf Files
OR
Embed HTML Files