HTML <img>
tag is used to display image on the web page. The <img>
tag is an empty tag, which means that, it can contain only list of attributes and it has no closing tag.
HTML <img>
tag is used to display image on the web page. The <img>
tag is an empty tag, which means that, it can contain only list of attributes and it has no closing tag.
<img>
tagSee this example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML Images</title>
</head>
<body>
<p><img src="https://nexladder.com/images/nexlogo.png" src="" /></p>
</body>
</html>