HTML Image Tag: How to Display Pictures on Your Website
The correct answer is 'img'. The <img> tag is used to embed an image in an HTML document. Here's a basic example:
<img src="image.jpg" alt="Description of the image">
Explanation:
<img>: This is the opening tag for the image element.src: This attribute specifies the URL of the image file.alt: This attribute provides alternative text for the image, which is important for accessibility and search engines. It describes the image for users who cannot see it.
原文地址: https://www.cveoy.top/t/topic/pk0G 著作权归作者所有。请勿转载和采集!