Table of Contents

What is the definition of HTML attribute?

HTML attributes are a concept of providing extra Features to the HTML elements. In an HTML document, All the HTML elements may have attributes. Attributes are additional information or characteristics provided to the HTML elements like providing width and height in an image tag, providing color or font style to the name tag, etc. HTML Attributes are always defined under start tag or Opening Tag. The attribute consists of name/value-like pairs such as name=” value”. some tags like < img > image tag or < a > anchor tag must contain attributes. In < img > tag must contain SRC and alt attributes.

Examples of HTML attributes are given below

< img src=”D:\html\images\nature.png” width=”700″ height=”500″ >

 < a href=example.com>click here to go on link</ a >

< body background=”D:\html\images\nature.png” >

< table width=”50%” border=”1″ bordercolour=”black” cellpacing=”2″ cellpadding=”2″ >

< font size=”3″ color=”white” >

< input type=”text” Value=”example” >

Above Examples Explain here-

In the above example, < img > image tag consists of src attribute with width and height. Where src specifies the location or path of the particular image where your image has been saved in your local computer.

In the second example, < a > anchor tag refers to the hyperlink, which is used to link one web page to another web page. < a > anchor tag must have href attribute. In which href is an attribute which specifies the URL of the web page.

What is the SRC attribute in HTML?

The SRC attribute is an important attribute in the image tag. SRC is a source where SRC specifies the location or path of the particular image where your image has been saved in your local computer.

What is SRC in HTML with example?

If the user wishes to import the image into the HTML document then mention the path where your image has been saved will show by the SRC attribute. This attribute will help the HTML document where exactly your Image file has been located in your computer. Also helps the browser to print your Image. In < img > tag must contain SRC and alt attributes.

Syntax- < img src=” Source or path of you image in local computer ” >

 Example

				
					<!DOCTYPE html>
<html>
<head>
      		<title>image tag</title>
   	</head>
  	 <body data-rsssl=1>
   		<img src="D:\html\images\black.jpg" width="700" height="500" alt="D:\html\images\black" title="HTML Attributes 1">
 	  </body>
</html>

				
			

Output : 

img src

What is alt attribute in HTML and what is the use of alt attribute with example?

In an HTML document, the alt attribute is used in an Image tag. If the user wants to insert an image and at the same time alt attribute is used for specifying the alternate text in HTML document. In The image tag, the alt attribute is used for providing extra information regarding the image.

If you wish to insert an image in the HTML document but at the same time if you fail to give the correct src means source or path for the image and then you will get an error and the image will not print on your webpage then With the help of alt attribute you can understand what exactly your image is specifying.

Syntax–   < img alt =” any text you can write here” >

The text which is written in the alt attribute must specify the information about the image. If In the Image tag you are using < a > Tag for the link then at the same time your alt attribute will provide extra information regarding the link.

Example-

				
					<!DOCTYPE html>
<html>
	<head>
		<title>alt attribute </title>
   </head>
   <body data-rsssl=1>
		<h1>geeky4u.com</h1>
		<img loading="lazy" src="D:\html\images\black.jpg" alt="Black and white image of wallpaper" width="700" height="500" title="HTML Attributes 3">
   </body>
</html>

				
			

Output : 

alt attribute

What is the use of height and width attributes in HTML with Example?

In HTML document Height and Width attributes are used when the user wishes to add any video or image respectively. It is very useful for the browser to understand the video size and image size when the height and Width attribute is mentioned in the HTML document. If the height and width attribute is mentioned in the code then it will be easier to understand the browser’s page and how much space is required for the particular video or image.

Syntax- 

  • < img src=”path” width=”#” height=”#” >
  • < video width=”pixels” >

ID attribute with example

Id attribute in an HTML is used for providing a unique id to the HTML document. HTML Id attribute must contain a unique value. Id attribute can be manipulated by both CSS and JavaScript. If you want to add some style declaration into your HTML document then CSS is used and at the same time, JavaScript is used for the manipulation of HTML elements with the Id attribute.

Syntax

				
					Syntax:-
#IdName {
	    	CSS properties
		}
<body data-rsssl=1>
	<h1 id ="Id Name">HTML text</h1>
<body data-rsssl=1>

				
			
				
					<!DOCTYPE html>
<html>
	<head>
      <title>Id attribute</title>
   
   <style>
			#mywebsite {
			text-align: center;
			color: white;
			Backgrount-color: black;
   }
   </style>
   </head>
   <body data-rsssl=1>
		<h1 id="mywebsite"> geeky4u.com</h1>
   </body>
</html>

				
			

What are title attributes and the use of title attributes for example?

In an HTML document, if you want to give a title for your document then < title > tag is used. This title is shown in the browser’s title or page’s tab. Web Browser then displays your page title on the very top corner of your page tab.

				
					 <!DOCTYPE html>
<html>
    <head>
      		<title>style tag</title>
    </head>
</html>

				
			

Output : 

title attribute

What is style attribute definition uses with example?

In your HTML document style attribute is used to provide extra features or characteristics to your web page so that the content which you mention in your HTML Document will look more attractive.

Example-

				
					<!DOCTYPE html>
<html>
<head>
      	<title>style tag</title>
</head>
   	<body data-rsssl=1>
   		<p style="color:red;">My paragraph is in red colour</p>
   	</body>
</html>

				
			

Output : 

style attribute

What is Lang’s attribute definition used for example?

Lang attribute is used for applying different languages to the text of your HTML document. If you wish to add by default language to your HTML document then you need to add the Lang attribute in the HTML start tag. While applying the Lang attribute to your HTML tag it is important to apply language code in the content.

Syntax- < element lang=” language code” >

Example-

				
					<!DOCTYPE html>
<html>
<head>
	<title>Lang tag</title>
</head>
   	<body data-rsssl=1>
    		<p> This is my paragraph </p>
		<p lang="fr">ceci est ma premiere paragraphe</p>
    </body>
</html>

				
			

Output : 

Lang attribute