+ 2
How can I add audio and video to my browser
Html
5 ответов
+ 4
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
video like this
</video>
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
audio like this
</audio>
+ 1
. Ogg file.. Y are we using this file
+ 1
How.. If u don't mind give me tags for information
0
you can also add a video from youtube by right clicking on the video (in youtube) and selectinf copy embed code.
this will create and <iframe> tag that you can customize
0
when you are in the video in youtube, right click on the video and select copy embed link. then paste it in your code and try it. you have to be on pc thou