How to use body tag


<body>

All Tags not showing in online page, but show on view source.

<body>
Welcome to Home2IT.com
</body>

Code show like this:

Welcome to Home2IT.com

Browser Support

The <body> tag is supported in all major browsers.

What is body tag

Body tag is most important tag in HTML anything you are see in web page. All of this code in insert in body tag. Body tag use after close head and close before html close tag

Difference in HTML5

All layout attributes is removed in HTML5.

How to use blockquote tag


<blockquote>

All Tags not showing in online page, but show on view source.

<blockquote>
Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup
</blockquote>

Code show like this:

Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup Lipsum loreup

Browser Support

The <blockquote> tag is supported in all major browsers.

What is blockquote tag

The <blockquote> tag is gives indent in paragraph text.

How to use big tag


<big>

All Tags not showing in online page, but show on view source.

Your <big>Big</big> text

Code show like this:

Your Big text

Browser Support

The <big> tag is supported in all major browsers.

Attention: big tag is not support in HTML5, you can use CSS Instead of this.

What is big tag

The <big> tag is change text size.

Difference in HTML 4.01

The big tag is supported in HTML 4.01.

Difference in HTML5

The big tag is not supported in HTML5

How to use bdo tag


<bdo>

All Tags not showing in online page, but show on view source.

<bdo dir="rtl">
Your text will right-to-left.
</bdo>

Code show like this:


Your text will right-to-left.

Browser Support

The <bdo> tag is supported in all major browsers.

What is bdo tag

The <bdo> tag is used to flip your text direction.

How to use bdi tag


<bdi>

All Tags not showing in online page, but show on view source.

<ul>
<li>Users <bdi>point1</bdi>: Sam</li>
</ul>

Code show like this:

  • Users point1: Sam

Browser Support

The <bdi> tag is supported in all major browsers.

Differences in HTML5

The <bdi> tag is new in HTML5.

How to use base tag


<base>

All Tags not showing in online page, but show on view source.

<base">This is a your text</base">

This code not show in your website document

This is a your text

Browser Support

The <base> tag is supported in all major browsers.

What is base tag

The <base> tag is specifies the base URL/target for all relative URLs in a document. This tag use into head tag before body tag

How to use b tag


<b>

All Tags not showing in online page, but show on view source.

<b>This is a bold text</b>

Code show like this:

This is a bold text

Browser Support

The <b> tag is supported in all major browsers.

What is b tag

The b tag make a bold text.

How to use audio tag


<audio>

All Tags not showing in online page, but show on view source.

<audio controls>
  <source src="img/hello.mp3" type="audio/mpeg">
  Your browser does not support the audio tag.
</audio>

Code show like this:

Browser Support

The <audio> tag is not supported Internet Explorer 8 and earlier versions.

What is audio tag

The <audio> tag use for insert audio on your website. You can also use three type audio format. When brosers that do’t support the audio tag then any text inside the between <audio> and </audio> will be displayed

  1. Mp3
  2. Ogg
  3. Wav

HTML5

The <audio> tag is new in HTML5.

How to use aside tag


<aside>

All Tags not showing in online page, but show on view source.

<aside style="color:#09C">
  <h4>Home2IT</h4>
  <p>This is aide tag effect.</p>
</aside>

Code show like this:

Browser Support

The <aside> tag is not supported in Internet Explorer 8 and earlier versions

HTML5

The <aside> tag is new in HTML5.

How to use article tag


<article>

All Tags not showing in online page, but show on view source.

<article>
  <h1>Welcome to Our Site</h1>
  <p>Home2IT a Website Beginning for Web Designers</p>
</article>

Code show like this:

Welcome to Our Site

Home2IT a Website Beginning for Web Designers

Browser Support

The <article> tag is supported in Internet Explorer 8 and earlier versions.

HTML5

The <article> tag is new in HTML5.