How to use span tag


<span>

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

What is span tag

span tag is used to color some text and change property.

How to use source tag


<source>

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 <source> tag is not supported in supported in Internet Explorer 8 and earlier versions.

What is source tag

The source tag used to specify multiple media resources for media elements, such as video and audio.

HTML5

source tag is new in html5.

How to use small tag


<small>

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

<p>Hello! google.<small>com</small></p>

Code show like this:

Hello! google.com

Browser Support

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

What is small tag

small tag is used to smaller text.

How to use select tag


<select>

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

What is select tag

select tag is used to create a drop-down list.

How to use section tag


<section>

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

<section>
<h1>From today's featured article</h1>
<p>Lê Quang Tung (1923–63) was the commander of the Army of the Republic of Vietnam Special Forces under the command of Ngô Đình Nhu, brother of South Vietnam's president, Ngô Đình Diệm. During the 1950s, Tung was a high-ranking official in Nhu's Cần Lao, a secret political apparatus which maintained the Ngô family's grip on power.</p>
</section>

Code show like this:

From today’s featured article

Lê Quang Tung (1923–63) was the commander of the Army of the Republic of Vietnam Special Forces under the command of Ngô Đình Nhu, brother of South Vietnam’s president, Ngô Đình Diệm. During the 1950s, Tung was a high-ranking official in Nhu’s Cần Lao, a secret political apparatus which maintained the Ngô family’s grip on power.

Browser Support

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

What is section tag

section tag is used to for section in a document.

HTML5

section tag is new in html5.

How to use script tag


<script>

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

<script>
document.write("Welcome! This is javascript text.")
</script>

Code show like this:

Browser Support

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

What is script tag

script tag used to for client-side script, such as a JavaScript.

How to use samp tag


<samp>

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

<p>Hello ! <samp>computer program text</samp></p>

Code show like this:

Hello ! computer program text

Browser Support

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

What is samp tag

samp tag is used to sample output from a computer program.

How to use s tag


<s>

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

<p>August 1963 in which <s>hundreds died</s> or disappeared.</p>

Code show like this:

August 1963 in which hundreds died or disappeared.

Browser Support

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

What is s tag

s tag means strikethrough. Basically use for specifies text that is no longer correct.

Attention: s tag should not be used to define replaced or deleted text, use the del tag to define replaced or deleted text.

How to use q tag


<q>

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

<p>A 7.1-magnitude <q>Following the evacuation of fatalities.</q>wikipedia text</p>

Code show like this:

A 7.1-magnitude Following the evacuation of fatalities.wikipedia text

Browser Support

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

What is q tag

q tag means quation. Browsers normally insert quotation marks around the quotation.

How to use progress tag


<progress>

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

<progress value="50" max="100"></progress>

Code show like this:

Browser Support

The <progress> tag is not supported in Internet Explorer 9 and earlier versions.

What is progress tag

progress tag is used to represents the progress of a task. progress tag used for working progress.

HTML5

progress tag is new in html5.