HTML images

 HTML Images
 

  HTML images are defined within the <img> tag.
 The source file (src), alternative text (alt), width and height are  provided as attributes
 
<img src=”image.jpg” alt=”LearnersTV.in” width=”104″ height=”142″>
 

Read More

Html Headings

Headings help in defining the hierarchy and the structure of the web page content.

HTML offers six levels of heading tags, 

 through ,the higher the heading level number, the greater its importance — therefore 

 tag defines the most important heading, whereas the 

 tag defines the least important heading in the document.

Importance of Headings

  • HTML headings provide valuable information by highlighting important topics and the structure of the document, so optimize them carefully to improve user engagement.
  • Don’t use headings to make your text look BIG or bold. Use them only for highlighting the heading of your document and to show the document structure.
  • Since search engines, such as Google, use headings to index the structure and content of the web pages so use them very wisely in your webpage.

These tags are mainly written inside the body tag. HTML provides us with six heading tags from

<h1> to </h6>

Every tag displays the headings in a different style and font size

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