Attributes

03 Sep  Admin

Attributes ?? ?????? ?? tags ?? ???? according configure ?? ???? ??? Attributes ?? ????? starting tag ??? define ???? ???? ??? ????? define ???? ?? ?????? ???? ???? ?? ??? ??? ????? ?? HTML tags ???? ?? ?? ???? attributes ???? ??? ?? name ?? value ?? pair ??? ???? ???? ???

<tagName attrName=”value”> some text here.</tagName>


Common HTML attributes 

Attributes advanced configuration ?? ??? ???? ???? ???? ??? ???? ?? ?? default page background ???? ????? ?? ???? ???? according change ?? ???? ??? ??? ?? ?? ??? default text color ???? ????? ?? ?? ??? ?? change ?? ???? ??? Attributes ?? ???? ???? ???? ?? simple ??? ?? ???? ??? ???? ????? ?? ????? attribute ??? ??? ???? ???? ??? 

???? ???? HTML ??? commonly ???? ???? ???? attributes ?? list ?? ?? ??? ???  

 Attribute Explanation  Example  

 id  
HTML document ??? ???? tag ?? uniquely identify ???? ?? ??? id attribute ???? ???? ???? ??? ?????? 2 tags ?? id same ???? ?? ???? ???    
 <p id=”mypara”> 

 class 
?? attributes tags ?? ??? ??? class ??? categories ???? ?? ??? ???? ???? ???? ??? ???? ?? tags ?? class ?? ?? ???? ??? 
 <h1 class=”java”> 

 title  
???? tag ?? tittle ???? ???? ?? ??? title attribute ???? ???? ???? ???   
 <p title=”Hello”> 

 style 
?? attribute ?? ?????? ?? tag ?? style rules apply ?? ???? ???   <p style=”color:red”>  
Read More

Html Attributes

An attribute is used to define the characteristics of an HTML element and is placed inside the element’s opening tag. All attributes are made up of two parts − a name and a value

Name:-The name is the property you want to set. For example, the paragraph <p> element in the example carries an attribute whose name is align, which you can use to indicate the alignment of paragraph on the page.

Value:-The value is what you want the value of the property to be set and always put within quotations. The below example shows three possible values of align attribute: left, center and right.

The Id Attribute

The id attribute of an HTML tag can be used to uniquely identify any element within an HTML page. There are two primary reasons that you might want to use an id attribute on an element −

If an element carries an id attribute as a unique identifier, it is possible to identify just that element and its content.

If you have two elements of the same name within a Web page (or style sheet), you can use the id attribute to distinguish between elements that have the same name.

The title Attribute

The title attribute gives a suggested title for the element. They syntax for the title attribute is similar as explained for id attribute −

The behavior of this attribute will depend upon the element that carries it, although it is often displayed as a tooltip when cursor comes over the element or while the element is loading.

Read More