Attributes
Tags can carry attributes: settings that configure them, in the form
name="value", always inside the opening tag. Think of them as an element's
options.
Links
The <a> element (anchor) creates a link. Its href attribute indicates the
destination:
<a href="https://example.com">Visit Example</a>
Images
<img> displays an image. It is a tag without a closing tag (it has no
content): there is no </img>. Its key attributes:
src: the address of the image.alt: alternative text (read by those who can't see the image, and shown if loading fails). It should always be present; forgetting it is the ⚠️ CLASSIC TRAP with<img>.
<img src="cat.jpg" alt="An orange cat sleeping" />