How to use em tag


<em>

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

<em>Your text is highlighted</em>

Code show like this:

Your text is highlighted

Browser Support

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

What is em tag

em tag is Emphasized. basically use for highlighted text and italic text.

How to use dt tag


<dt>

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

<dl>
  <dt>Name</dt>
    <dd>Raj</dd>
    <dd>Sonu</dd>
  <dt<Class</dt>
    <dd>7th</dd>
    <dd>8th</dd>
</dl>

Code show like this:

Name
Raj
Sonu
Class
7th
8th

Browser Support

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

What is dt tag

dt tag means is data type. dl tag use for data type, dt tag use into dl tag for your data.

How to use dl tag


<dl>

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

<dl>
  <dt>Name</dt>
    <dd>Raj</dd>
    <dd>Sonu</dd>
  <dt<Class</dt>
    <dd>7th</dd>
    <dd>8th</dd>
</dl>

Code show like this:

Name
Raj
Sonu
Class
7th
8th

Browser Support

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

What is dl tag

dl tag means is data list. dl tag use for data list, dd tag use into dl tag for your data.

How to use div tag


<div>

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

<div>Now you are using table less project use div tag instead of table tag.</div>

Code show like this:

Now you are using table less project use div tag instead of table tag.

Browser Support

The <div> tag is supported in supported in Internet Explorer 9 and earlier versions, and Safari.

What is div tag

Div tag is most important tag in html. All latest work in html table less creating with div tag.

How to use dfn tag


<dfn>

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

<dfn>Define</dfn> your text here.

Code show like this:

Define your text here.

Browser Support

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

What is dfn tag

Dfn tag is used to define your text. Basically use for italic text.

How to use details tag


<details>

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

<details>
    <summary>Click for Home Detail</summary>
    <p>There are your Detail for Home2IT.com</p>
</details>

Code show like this:

Click for Home Detail

There are your Detail for Home2IT.com

Browser Support

The <details> tag is supported only Chrome and Safari.

What is details tag

Details tag used to heading of detail. Use summary tag for detail heading into detail tag.

Difference in HTML5

The details tag is new in HTML5.

How to use del tag


<del>

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

<del>Gogle</del> name is wrong currect name is Google.

Code show like this:

Gogle name is wrong currect name is Google.

Browser Support

The <del> tag is not supported in all major browsers.

What is del tag

Del tag is used to for showning delete text.

How to use dd tag


<dd>

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

<dl>
  <dt>Name</dt>
    <dd>Raj</dd>
    <dd>Sonu</dd>
  <dt<Class</dt>
    <dd>7th</dd>
    <dd>8th</dd>
</dl>

Code show like this:

Name
Raj
Sonu
Class
7th
8th

Browser Support

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

What is dd tag

dd tag means is data description. dd tag use into dl tag.

How to use datalist tag


<datalist>

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

<input list="names">
<datalist id="names">
  <option value="Pradeep">
  <option value="Ravi Sharma">
  <option value="Santosh">
  <option value="Vikas">
</datalist>

Code show like this:


Browser Support

The <datalist> tag is not supported in supported in Internet Explorer 9 and earlier versions, and Safari.

What is datalist tag

Datalist tag is used to input type data, that are show automatically on enter a letter of word. Datalist tag use into option tag with value.

Difference in HTML5

The datalist tag is new in HTML5.

How to use comment tag


<!--Your Comment-->

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

<!--Header-->
<header> This is your header </header>
<!--Header End-->

Code show like this:

This is your header

Browser Support

The <!–> tag is supported in all major browsers.

What is comment tag

comment tag is used to comment in your html document. basically comment tag is help for web designer.