How to use var tag


<var>

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

<p>This is your <var>xyz</var></p>

Code show like this:

This is your xyz

Browser Support

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

What is var tag

var tag means variable. A variable is simply a symbol which is or may be associated to some value(s).

How to use ul tag


<ul>

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

<ul>
<li>Users point1: Sam</li>
<li>Users point2: Web</li>
</ul>

Code show like this:

  • Users point1: Sam
  • Users point2: Web

Browser Support

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

What is ul tag

ul tag means unordered (bulleted) list. The li tag is used with li tag.

How to use u tag


<u>

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

<p>This is your <u>underline text</u></p>

Code show like this:

This is your underline text

Browser Support

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

What is u tag

u tag means underline. u tag not be a link.

How to use tt tag


<tt>

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

<p><tt>Teletype text</tt></p>

Code show like this:

This is your Teletype text

Browser Support

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

Attention: tt tag is not supported in HTML5. Use CSS instead of this.

What is tt tag

tt tag means teletype text. tr tag used to a row in an HTML table.

Differences Between HTML 4.01 and HTML5

tt tag is not supported in HTML5, but is supported in HTML 4.01.

How to use tr tag


<tr>

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 <tr> tag is supported in all major browsers.

What is tr tag

tr tag means table row. tr tag used to a row in an HTML table.

How to use title tag


<title>

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

<!DOCTYPE html>
<html>
<head>
<title>Title of the your website</title>
</head>
<body>
The content of the your website
</body>
</html>

Code show like this:

The content of the your website

Browser Support

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

What is title tag

titile tag used to website title. title tag used to into head tag.

How to use time tag


<time>

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

<table>
  <colgroup>
    <col style="background:yellow">
    <col style="background:green">
  </colgroup>
  <tr>
    <th>Roll no</th>
    <th>Name</th>
  </tr>
  <tr>
    <td>11</td>
    <td>Raj</td>
  </tr>
  <tr>
    <td<12</td>
    <td>Ravi</td>
  </tr>
</table>

Code show like this:

The time is

Browser Support

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

What is time tag

time tag is used to for time.

HTML5

time tag is new in html5.

How to use thead tag


<thead>

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 <thead> tag is supported in all major browsers.

What is thead tag

thead tag means table header. thead tag used to group header content in an HTML table.

How to use th tag


<th>

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 <th> tag is supported in all major browsers.

What is th tag

th tag means table head. th tag used to header cell in an HTML table. basically th tag bold his content

How to use tfoot tag


<tfoot>

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 <tfoot> tag is supported in all major browsers.

What is tfoot tag

tfoot tag means table footer. tfoot tag used to group footer of content in an HTML table.