Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Video

The HTML <video> Element

To display a video using HTML, employ the <video> element:

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>

How it Works

The controls attribute adds play, pause, and volume controls to a video. It’s recommended to set width and height to avoid page flickering during loading.

The <source> element specifies alternative video files for browser compatibility, with the first supported format being used. Text between the <video> tags is displayed only in browsers that don’t support the <video> element.