Computer Applications
Which are the ways to add a video file in a web page ?
- Linking via
<A>
- Embedding via
<EMBED>
- Embedding via
<VIDEO>
- All of these
HTML Advanced Features
3 Likes
Answer
All of these
Reason — We can add a video file in a web page using different tags in the following ways:
1. Using anchor tag <A>
<A HREF = "WORDS.MP4"> Click here to play video </A>
2. Using <EMBED>
tag
<EMBED SRC = "WORDS.MP4" WIDTH = "100" HEIGHT = "50" AUTOSTART = "TRUE" LOOP = "FALSE">
3. Using <VIDEO>
tag
<VIDEO SRC = "WORDS.MP4" TYPE = "VIDEO/MP4"> Video cannot be played </VIDEO>
Answered By
3 Likes
Related Questions
Which of the following is/are not valid tag(s) for inserting video files in an HTML pages?
- embed
- video
- movie
- VID
Which are the ways to add an audio file in a web page ?
- Linking via
<A>
- Embedding via
<EMBED>
- Embedding via
<VIDEO>
- All of these
- Linking via
Any tag allowed inside a
<body>
tag is allowed inside a<form>
tag.- True
- False
A form has two required attributes. These are :
- Method and Action
- Get and Post
- Start and Stop
- Begin and End