How to use pre tag


<pre>

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

<pre>Text in a pre   code is displayed.</pre>

Code show like this:

Text in a pre code is displayed.

Browser Support

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

What is pre tag

pre tag is used to preformatted text. Show your both white space.

How to use param tag


<param>

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

<object data="img/hello.mp3">
  <param name="autoplay" value="true">
</object>

Code show like this:

Browser Support

The <param> tag is supported in all major browsers

What is param tag

param tag is used to define parameters for plugins embedded with an object element.

How to use p tag


<p>

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

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

Code show like this:

This is your paragraph text.

Browser Support

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

What is p tag

p tag means paragraph. basically use for paragraph.

How to use output tag


<output>

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

<form oninput="x.value=parseInt(first.value)+parseInt(sec.value)">
    <input type="number" name="first" value="0"> +
    <input type="number" name="sec" value="0">=
    <output name="x" for="a b"></output>
</form>

Code show like this:

+
=

Browser Support

The <output> tag is not supported in Internet Explorer.

What is output tag

output tag used to for output in html form.

How to use option tag


<option>

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

<select>
    <option value="Gmail">Gmail</option>
    <option value="Goolge">Google</option>
    <option value="Like">Like</option>
    <option value="Comment">Comment</option>
    <option value="Share">Share</option>
</select>

Code show like this:

Browser Support

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

What is option tag

option tag is used an option in a select list.

How to use optgroup tag


<optgroup>

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

<select>
  <optgroup label="Google">
    <option value="Gmail">Gmail</option>
    <option value="Goolge">Google</option>
  </optgroup>
  <optgroup label="Facebook">
    <option value="Like">Like</option>
    <option value="Comment">Comment</option>
    <option value="Share">Share</option>
  </optgroup>
</select>

Code show like this:

Browser Support

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

What is optgroup tag

optgroup tag is used to group related options in a drop-down list.

How to use ol tag


<ol>

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

<ol>
    <li>Users point1: Sam</li>
    <li>Users point2: Web</li>
    <li>Users point2: Developer</li>
</ol>
<p>You can start with another number.</p>
<ol start="10">
    <li>Users point1: Sam</li>
    <li>Users point2: Web</li>
    <li>Users point2: Developer</li>
</ol>
<p>You can start with small alphabate.</p>
<ol type="a">
    <li>Users point1: Sam</li>
    <li>Users point2: Web</li>
    <li>Users point2: Developer</li>
</ol>
<p>You can start with big alphabate.</p>
<ol type="A">
    <li>Users point1: Sam</li>
    <li>Users point2: Web</li>
    <li>Users point2: Developer</li>
</ol>
<p>You can start with small roman numbers.</p>
<ol type="i">
    <li>Users point1: Sam</li>
    <li>Users point2: Web</li>
    <li>Users point2: Developer</li>
</ol>
<p>You can start with big numbers.</p>
<ol type="I">
	<li>Users point1: Sam</li>
    <li>Users point2: Web</li>
    <li>Users point2: Developer</li>
</ol>

Code show like this:

  1. Users point1: Sam
  2. Users point2: Web
  3. Users point2: Developer

You can start with another number.

  1. Users point1: Sam
  2. Users point2: Web
  3. Users point2: Developer

You can start with small alphabate.

  1. Users point1: Sam
  2. Users point2: Web
  3. Users point2: Developer

You can start with big alphabate.

  1. Users point1: Sam
  2. Users point2: Web
  3. Users point2: Developer

You can start with small roman numbers.

  1. Users point1: Sam
  2. Users point2: Web
  3. Users point2: Developer

You can start with big numbers.

  1. Users point1: Sam
  2. Users point2: Web
  3. Users point2: Developer

Browser Support

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

What is ol tag

ol tag means ordered list. Ordered list can be numerical, alphabetical and roman numbers.

Use the li tag used to list items.

How to use object tag


<object>

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

<object width="400" height="200" data="images/glof.swf"></object>

Code show like this:

Browser Support

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

What is object tag

object tag used to embedded object within an HTML document. Use this element to embed multimedia (like audio, video, Java applets, ActiveX, PDF, and Flash) in your web pages.

How to use noscript tag


<noscript>

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

<script>
document.write("Welcome! This is javascript text.")
</script>
<noscript>Your browser does't support JavaScript.</noscript>

Code show like this:


Browser Support

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

What is noscript tag

noscript tag used to for alternate content for users that have disabled scripts in their browser or have a browser that doesn’t support script.

The noscript tag you can be used in both head tag and body tag.

HTML 4.01

noscript tag is supported

HTML5

noscript tag is not supported

How to use nav tag


<nav>

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

<nav>
<a href="#">Home</a> | <a href="#">About Us</a> | <a href="#">Contact Us</a>
</nav>

Code show like this:

Browser Support

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

What is nav tag

nav tag means navigation. nav tag used to navigation linke in header like home, about us, contact us.

HTML5

nav tag is new in html5.