Know about HTML Useful Tags

Check HTML Useful Tags from Coding section on e akhabaar

HTML Tags Tutorial- Headers Tag

Headers are used to organize information into hierarchical groupings.

Heading1

Heading2

Heading3

Heading4

Heading5
Heading6

Headers tags are block-level elements, meaning they take up an entire line by themselves, and no other markup is allowed in-side heading tags.

DIV

The DIV tag is one you can use to create a logical division within your document. DIVs work with css, and allow you to write CSS rules that specify how the text within the DIV should be formatted.

Images /Pictures

To add an image to your document , you use the “image” tag. To insert an image into your html document use the following syntax:


The value that you put in the ‘src=’ attribute can either specify a graphic that is on the local file system, or you can specify a full URL which retrives the image from some-where else on the internet.

Links

A link takes a user to another place when they click on it. The link can be to a specific part of the open document or to a new page entirely.

Takes the user to a new page.

PHPGurukul

Takes the user to diffrent place(as indicated by the tag ) in the current page :

Go to top

Lists

There are two kinds of lists- ordered and unordered. An ordered list is numbered such as 1,2,3, while an unordered list is a list of bullet items. There are tags to start and stop the list, and tags for each item in the list.

An ordered list start with the

    tag. An unordered list start with the

      . tag. Each list item, regardless of list type, starts with

    • tag and ends with
    • .

      Ordered list Ex:

      1. Coffee
      2. Milk

      Output

      1. Coffee
      2. Milk

      Unordered list Ex:

      • Coffee
      • Milk

      Output

      • Coffee
      • Milk

Post your more queries related to HTML Useful Tags below.