Home

Links and Images

Links and images are essential in building interactive web pages. You can link to other web pages and display images on your site with ease using HTML.

Links

To create a link in HTML, use the <a> (anchor) tag. The href attribute specifies the URL of the page you want to link to.


<a href="https://www.example.com">Click Here</a>
    

This will create a link that says "Click Here" and takes users to the URL specified in the href.

Images

To add an image, use the <img> tag. The src attribute defines the image source, and the alt attribute provides alternative text for accessibility.


<img src="image.jpg" alt="Description of the image">
    

Exercise

Create a link to your favorite website. Then, add an image using an online URL.