0

HTML. videos and image

How can I add images or vídeos to my html code if they are on my device and don't have link?Should Iuplaod the first to any place to have a link to refer to it ??

16th Jan 2025, 7:48 PM
Ghada Mahmoud
Ghada Mahmoud - avatar
2 Respuestas
0
Ghada Mahmoud All media (images, videos, audio) used in webpages has to be hosted on a web server somewhere. If these media files happen to be on same web server as your html, then you can use relative file path names like you commonly see with CSS files in <link href=" "> and with JS in <script src=" ">. If these media files are on other web servers, you will need to use absolute file path names like you were shown in the lessons.
19th Jan 2025, 6:30 AM
Shardis Wolfe