+ 1
How can i add videos and images to my page
https://sololearn.com/compiler-playground/Wk3R3mpa4zP6/?ref=app
3 Answers
+ 2
This is at least the third time you have posted a code in the last few days that shows that you need to learn the basics. It isnât realistic to keep on asking here for help every time you want to do something. Just try to get through the web development course and review anything that isnât clear. Then try one step at a time to see if you can apply what youâve learned. Trust me, I know what am talking about.
0
Innocent Agoha
<source src="file.mp4"
type=" video.mp4">
You need to change your src value to a valid reference.
As is, it is looking for a file called "file.mp4" on the SoloLearn webserver.
Local references only work if the file is on same server as the html file.
If on different server, you need to
đ upload the file to a web host
đ provide absolute reference to the file on that web host
EXAMPLE
src = "https://www.example.com/myVideo.mp4"