Learn HTML code for images or image tutorial.
<!DOCTYPE html>
<html>
<body>
<img src="#" alt="Your Image Text" width="150" height="150">
</body>
</html>
Replacing '#' with your image path link.
To point to an image on another server, you must specify an absolute (full) URL in the src attribute:
<!DOCTYPE html>
<html>
<body>
<img src="https://www.anothersite.com/images/green.jpg" alt="AnotherSite">
</body>
</html>