HTML Images Explain
HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), and size (width and height) are provided as attributes.
Html Code:
<!DOCTYPE html>
<html>
<body>
<img src="Daddyfile.jpg" alt="DaddyFile.com" width="104" height="142">
</body>
</html>
Post a Comment