HTML5: How to set the height of the video player?
Solution:
HTML Code:
<!DOCTYPE html><!-- Define document type as HTML -->
<html><!-- Begin HTML document -->
<head><!-- Start of document header -->
<meta charset="utf-8"><!-- Define character encoding -->
<title>How to set the height of the video player </title><!-- Title of the HTML page -->
</head><!-- End of document header -->
<body><!-- Start of document body -->
<video width="250" height="300" controls><!-- Video element with specified width, height, and controls attribute -->
<source src="http://www.w3resource.com/html-css-exercise/basic/solution/php-demo1.mp4" type="video/mp4"><!-- Source of the video in MP4 format -->
<source src="http://www.w3resource.com/html-css-exercise/basic/solution/php-demo1.ogg" type="video/ogg"><!-- Source of the video in OGG format -->
</video><!-- End of video element -->
</body><!-- End of document body -->
</html><!-- End of HTML document -->
Explanation:
- The HTML code defines a video element using the <video> tag.
- The width attribute is set to 250 pixels and the height attribute is set to 300 pixels, specifying the dimensions of the video player.
- The controls attribute is included to display video controls, allowing users to interact with the video playback.
- Within the <video> tag, <source> tags are used to specify different video formats (MP4 and OGG) using the src attribute and the corresponding MIME type using the type attribute.
- This code creates a video player with a specified height while maintaining a width of 250 pixels, and it includes controls for video playback.
Live Demo:
See the Pen video-height-answer by w3resource (@w3resource) on CodePen.
See the solution in the browser
Supported browser
Yes | Yes | Yes | Yes | Yes |
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/html-css-exercise/basic/video-height-answer.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics