Horje
How to create HTML Images on Another Server/Website

Some web sites point to an image on another server.


Full Example of HTML Images on Another Server/Website

To point to an image on another server, you must specify an absolute (full) URL in the src attribute:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h2>Images on Another Server</h2>

<img src="https://itupto.com/avatar.png" alt="W3Schools.com" style="width:104px;height:142px;">

</body>
</html>

Output should be:

Full Example of HTML Images on Another Server/Website





Category:
Web Tutorial
Sub Category:
HTML Images
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference