Lesson 4 of 8
Links & Images
The <a> tag creates a hyperlink. The href attribute tells the browser where the link goes.
The <img> tag displays an image. It uses the src attribute for the image path and alt for alternative text.
HTML
<!-- Link to another page -->
<a href="https://example.com">Click here</a>
<!-- Display an image -->
<img src="photo.jpg" alt="A beautiful photo">