Sunday, July 25, 2021

HTML Image tag: Image tag in HTML - HTML Tutorial

HTML Image tag:

HTML img tag is used to display image on the web page. HTML  img tag is an empty tag that contains attributes only closing tags are not used in HTML image element.

Example: 

<h1> HTML Image tag </h1>

<img src="Good Morning.jpg" alt="Good Morning Friends">

Output:

Attributes of HTML img tag:

The scr and alt are important attributes of HTML img tag. All attributes of HTML image tag are given below:

1. scr:

It is a necessary attribute that describes the source or path of the image. It instructs the browser where to look for the image on the server.

The location  of  image may be o the same directory or another server.

2. alt:

The alt attribute defines an alternate text for the image, if it can't be displayed. The value of the alt attribute describe the image in words. The alt attribute is considered good for SEO prospective.

3. width:

It is an optional attribute which is used to specify the width to display the image. It is not recommended now. You should apply CSS in place of width attribute.

4. height:

It h3 the height of the image. The HTML height attribute also supports iframe, image and object elements. It is not recommended now. You should apply CSS in place of height attribute.

Use of height and width attribute with img tag:

You have learnt about how to insert an image in your web page now if we want ot give some height and width to display image according to our requirement, then we can set it with height and width attributes of image.

Example:

<img src="animal.jpg" height="180" width="300"alt=">

Output:

Use of alt attribute:

We can use alt attribute with tag. It will display an alternative text in case if image cannot be displayed on browser.

Example:

<img src="animal.jpg" height="180" width="300"alt="animal image">

How to get image form another directory / folder?

To insert an image in your web that image must be present in your same folder where you have put the HTML file. But if in some case image is available in some other directory then you can access the image like this:

<img src="D:\Shahnawaz\Image" height="180" width="300" alt="animal image">

Output:

Use <img> tag as a link:

We can also link an image with other page or we can use an image as a link. To do this put <img> tag inside the <a> tag.

Example:

<a href="https://www.shaahnawaz.com/image"><img src="rabbit" height="100" width="100"></a>

Output:


0 comments:

Post a Comment