Images in HTML
Images in HTML are inserted using the <img> tag. The src attribute specifies the URL of the image. Here's an example:
html
<img src="image.jpg" alt="Image description">
This will display an image with the filename "image.jpg" and a description of the image for accessibility purposes.
No comments:
Post a Comment