Advertisements
Advertisements
Question
Ayesha has shot some videos. She wants to create a webpage so as to share her creations with her followers across the world. Help Ayesha to embed her video file in the web page with the following specifications:
- The name of video file in Ayeshahits .mp4
- The video should play in a window of width 350 pixels and height 250 pixels.
- The video controls such as Play, Pause and and Volume should be visible.
Code Writing
Solution
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<video width="350" height="250" controls>
<source src="Ayeshahits.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>
shaalaa.com
Is there an error in this question or solution?