banner

Sujit Biswas 12th Jan 2017

In the previous tutorial I wrote about basic concept of html.

In this article, I will try to show some basic tags.

1. The <body> tag.

The body tag defined the hole document body,it has a start tag <body> and end tag </body>

2. HTML Headings

The Heading tag are defined with <h1> to <h6>.
.Here the starting tag is <h> and ending tag is </h>.
Tag <h1> is the most important in this list. User used heading
for skiming the page so heading is very important for the web page.We can use
any one of this depend on necessity.

Now I want to show an example.


<h1>This is a Heading</h1>
<h2>This is a Heading</h2>
<h3>This is a Heading</h3>
<h3>This is a Heading</h3>
<h4>This is a Heading</h4>
<h5>This is a Heading</h5>
<h6>This is a Heading</h6>

3. Paragraph tag <p>:

The tag <p> defined as paragraph. When we used this tag then browser creat paragraph
automatically. So when we need paragraph then we used this.


<p>This is a paragraph.</p>

4. Bold tag <b>:

Sometimes we need bold our text then used this tag.


This word is <b>bold</b>

5. Italic tag <i>:

Sometimes we need italic our text then used this tag.

This word is <i>italic</i>

6. Strong tag <strong>:

This tag worked as like as bold. Some important text that we want to bold then used <b> or
<strong> tag. Now we see an example.

This text is <strong> strong</strong>.

7. Emphasized tag <em>:

This tag is another italic tag we say because it worked as like as <i> tag. When we need italic
some text then we can used
<em> tag altar of <i> tag. For an example

This word is
<em>emphasized</em>

8. Insert tag <ins>:

This is another formsting tsg. If we want to add some text then we can used this tag. In this case the example is

My favorite color is <ins>green</ins>

9. Delete tag <del>:

If we want to delete or remove some text from the documnt then we used this tag. For an example.

My favorite color<ins>green</ins> red.

Finaly it is looking as

My favorite color
green
red.

10. Mark tag <mark>:

The important text of a document that we want to remembered then we can use this tag. For an example

My favorite color is <mark>green<mark/>.

Finally the example seen as

My favorite color is
green