Filter (Advanced Search)
Downloads
7
Views
287
Video

Video is not available... Embedded is previous playlist.

Details

Some web sites point to an image on another server.

To point to an image on another server, you must specify an absolute (full) URL in the src attribute:


<!DOCTYPE html>
<html>
<head>
<title>Images on Another Server/Website</title>
</head>
<body>
<b>Images on Another Server/Website</b><hr>

<img src="https://www.gssskhokhar.com/media/StaffImages/579095286.jpg" width="150" alt="@bintu.chaudhary">
<img src="https://www.gssskhokhar.com/media/StudentsPics/4207773.jpg" alt="Student Pic" width="150">
<BR>
<img src="https://www.nusratsahib.com/media/gallery/nusratsahib.jpg" width="200" height="240">

</body>
</html>


Output


Notes on external images: External images might be under copyright. If you do not get permission to use it, you may be in violation of copyright laws. In addition, you cannot control external images; they can suddenly be removed or changed.

Ad