Use of video on a webapge using HTML 5? Create a webapge named video.html to display a video file on the webapge and plays automatically with controls. The dimensions of video area should be 150*150 pixels *
Answers
Answer:
I study in class 6 but I know little to know how to make a html.
Explanation:
<html>
<video>
<video file>
file/ video location : windows/:c/;(drive)
<h1> video dimension 150×150<h1>
please mark me as brain list
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Video Player</title>
</head>
<body>
<video width="150" height="150" controls autoplay>
<source src="your-video-file.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>
Explanation:
In this code, the <video> tag is used to create a video player on the web page. The width and height attributes are set to 150 pixels each to indicate the dimensions of the video area. The controls attribute allows users to control video playback using standard controls such as play, pause, volume, and frame. The "autoplay" attribute indicates that the video should automatically play when the web page loads.
A tag inside a <video> The tag specifies the video file to play. In this example, the video file is named "your-video-file.mp4" and is located in the same directory as the HTML file.
If the user's browser does not support video tags, the message "Your browser does not support video tags" will be displayed instead of the video.
To learn more about HTML visit: https://brainly.in/question/2500440
#SPJ2