xxxxxxxxxx
<html>
<head>
</head>
<body>
<img src="exampel.end">
</img>
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>HTML img Tag</title>
</head>
<body>
<img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
height="80">
</body>
</html>
xxxxxxxxxx
<img src="image.jps">
//image.jpg is where you would put the inage source.
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Show Image</title>
</head>
<body>
<img src="path_to_image.jpg" alt="Image">
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<body>
<h2>HTML Image</h2>
<img src="pic_trulli.jpg" alt="Trulli" width="500" height="333">
</body>
</html>