Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Audio and Video Embedding | Media and Tables
Ultimate HTML
course content

Course Content

Ultimate HTML

Ultimate HTML

1. Web Development
2. Tags and Attributes
3. Document Structure
4. Media and Tables
5. Forms

bookAudio and Video Embedding

Audio Embedding

To include audio files on a web page, we can utilize the <audio> element. Let's consider an example:

html

index

css

index

js

index

copy

In this example we have.

  • <audio> element contains a <source> element, which specifies the URL and file type of the audio file. Commonly supported formats are MP3 and OGG;
  • controls attribute displays standard playback controls such as play, pause, and volume;
  • If the user's browser doesn't support the audio element, a fallback message will be displayed.

Additional attributes commonly used with the HTML audio element include:

  • autoplay - starts playing the audio file as soon as the page loads;
  • loop - causes the audio file to loop continuously;
  • muted - mutes the audio by default;
  • volume - specifies the default volume level for the audio file, ranging from 0.0 (silent) to 1.0 (full volume).

Here's an example demonstrating the usage of all these attributes:

html

index

css

index

js

index

copy

Video Embedding

We can use the <video> element to embed video files on a web page. Consider the following example:

html

index

css

index

js

index

copy

In this example:

  • <video> element contains a <source> element, which specifies the URL and file type of the video file. Commonly supported formats are WebM, MP4, and OGG;
  • controls attribute displays standard playback controls;
  • If the user's browser doesn't support the video element, a fallback message will be displayed.

Commonly used attributes for the HTML video element include:

  • autoplay - starts playing the video file as soon as the page loads;
  • loop - causes the video file to loop continuously;
  • muted - mutes the audio by default;
  • volume - specifies the default volume level for the audio file, ranging from 0.0 (silent) to 1.0 (full volume);
  • poster - specifies the URL of an image to display as the video thumbnail before the video is played;
  • width and height - specifies the width and height of the video player in pixels.

Here's an example demonstrating the usage of all these attributes:

html

index

css

index

js

index

copy

Note

Additionally, there are many JavaScript libraries and APIs available that provide additional functionality for playing and manipulating video content on the web.

Is it possible to implant audio and video on a web page?

Is it possible to implant audio and video on a web page?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 4. Chapter 6
some-alt