how do you put videos?? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 2

how do you put videos??

how do you put a video you can watch

29th Jun 2020, 12:47 AM
WantedWither
WantedWither - avatar
1 Respuesta
+ 10
The HTML Video element <video> embeds a media player that supports video playback. This is a simple example from Sololearn <video controls> <source src="http://www.sololearn.com/uploads/video.mp4" type="video/mp4"> <source src="http://www.sololearn.com/uploads/video.ogg" type="video/ogg"> Video is not supported by your browser </video> controls was added in the opening <video> tag to enable customization of the video. in the above example, the video format was specified by using (type). you can also specify autoplay, the dimension of the video player, and many more. Happy Coding !!
29th Jun 2020, 1:08 AM
BRight
BRight - avatar