How to use textarea tag


<textarea>

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

<form>
    Message: <textarea></textarea>
</form>

Code show like this:

Message:

Browser Support

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

What is textarea tag

textarea tag is used to message, comment, address.

How to use td tag


<td>

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

<table border="1">
  <thead>
  <tr>
    <th>Roll no</th>
    <th>Name</th>
  </tr>
  </thead>
  <tfoot>
  <tr>
    <td>11</td>
    <td>Raj</td>
  </tr>
  </tfoot>
  <tbody>
  <tr>
    <td>12</td>
    <td>Ravi</td>
  </tr>
  <tr>
    <td>13</td>
    <td>Santosh</td>
  </tr>
  </tbody>
</table>

Code show like this:

Roll no Name
11 Raj
12 Ravi
13 Santosh

Browser Support

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

What is td tag

td tag means table data. td tag is used to a standard cell in an HTML table.

How to use tbody tag


<tbody>

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

<table border="1">
  <thead>
  <tr>
    <th>Roll no</th>
    <th>Name</th>
  </tr>
  </thead>
  <tfoot>
  <tr>
    <td>11</td>
    <td>Raj</td>
  </tr>
  </tfoot>
  <tbody>
  <tr>
    <td>12</td>
    <td>Ravi</td>
  </tr>
  <tr>
    <td>13</td>
    <td>Santosh</td>
  </tr>
  </tbody>
</table>

Code show like this:

Roll no Name
11 Raj
12 Ravi
13 Santosh

Browser Support

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

What is tbody tag

table tag is used to group the body content in an HTML table.

How to use table tag


<table>

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

<table border="1">
  <thead>
  <tr>
    <th>Roll no</th>
    <th>Name</th>
  </tr>
  </thead>
  <tfoot>
  <tr>
    <td>11</td>
    <td>Raj</td>
  </tr>
  </tfoot>
  <tbody>
  <tr>
    <td>12</td>
    <td>Ravi</td>
  </tr>
  <tr>
    <td>13</td>
    <td>Santosh</td>
  </tr>
  </tbody>
</table>

Code show like this:

Roll no Name
11 Raj
12 Ravi
13 Santosh

Browser Support

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

What is table tag

table tag is used to HTML table. Use tr, th, td tag.

How to use sup tag


<sup>

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

<p>This is your <sup>subscript</sup> text.</p>

Code show like this:

This is your superscript text.

Browser Support

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

What is sup tag

sup tag means superscript. Superscript text appears half a character above the baseline.

How to use summary tag


<summary>

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 <summary> tag is supported only Chrome and Safari.

What is summary tag

summary tag used to detail. Use summary tag into detail tag.

HTML5

summary tag is new in html5

How to use sub tag


<sub>

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

<p>This is your <sub>subscript</sub> text.</p>

Code show like this:

This is your subscript text.

Browser Support

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

What is sub tag

sub tag means subscript. Subscript text appears half a character below the baseline.

How to use style tag


<style>

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

<p>Have you <span style="color:red;">red</span> pen</p>

Code show like this:

Have you red pen

Browser Support

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

What is style tag

span style is used to change property of some text.

How to use strong tag


<strong>

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

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

Code show like this:

This is your strong text.

Browser Support

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

What is strong tag

strong tag is used to strong your some word or character.

How to use strike tag


<strike>

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

<p>HTML5 is <strike>not yet available!</strike> now available!</p>

Code show like this:

HTML5 is not yet available! now available!

Browser Support

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

What is strike tag

strike tag is used to strikethrough.

Attention: strike tag is not supported in HTML5. Use the del tag instead of this.