How to use h1, h2, h3, h4, h5, h6 tag

<h1> <h2> <h3> <h4>
<h5> <h6>

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

<h1>Heading 1</h1>
<p>Heading 1 main tag in html for heading.</p>

<h2>Heading 2</h2>
<p>Heading 2 sub heading of heading 1 in html</p>

<h3>Heading 3</h3>
<p>Heading 3 sub heading of heading 2 in html</p>

<h4>Heading 4</h4>
<p>Heading 4 sub heading of heading 3 in html</p>

<h5>Heading 5</h5>
<p>Heading 5 sub heading of heading 4 in html</p>

<h6>Heading 6</h6>
<p>Heading 6 sub heading of heading 5 in html</p>

Code show like this:

Heading 1

Heading 1 main tag in html for heading.

Heading 2

Heading 2 sub heading of heading 1 in html

Heading 3

Heading 3 sub heading of heading 2 in html

Heading 4

Heading 4 sub heading of heading 3 in html

Heading 5

Heading 5 sub heading of heading 4 in html

Heading 6

Heading 6 sub heading of heading 5 in html

Browser Support

The <h> tags is supported in all major browsers.

What is h tags

h tags is used to heading of web page

How to use frame tag


<frame>

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

<iframe src="index.html" width="600" height="250"></iframe>

Code show like this:

Browser Support

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

What is frame tag

frame tag is used to import another html page in your html page and import video

How to use form tag


<form>

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

<form>
    Your Name: <input type="text"><br>
    Your Email ID: <input type="email"><br>
</form>

Code show like this:

Your Name:
Your Email ID:

Browser Support

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

What is form tag

form tag is used to fields.

How to use footer tag


<footer>

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

<footer>
<p>Home About Us Contact Us</p>
<p>©2013 Home2IT</p>
</footer>

Code show like this:

Home About Us Contact Us

©2013 Home2IT

Browser Support

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

What is footer tag

footer tag is website footer. Also you can your all website detail in footer section and all links of website.

Difference in HTML5

footer tag is new in HTML5

How to use font tag


<font>

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

<font size="3" color="blue">This is blue text!</font>

Code show like this:

This is blue text!

Browser Support

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

What is font tag

font tag is used to font size and color.

How to use figure tag


<figure>

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

<figure>
  <img src="images/butterfly.jpg" alt="The yellow Butterfly">
</figure>

Code show like this:

The yellow Butterfly

Browser Support

The <figure> tag is not supported in Internet Explorer 9, Firefox, Opera, Chrome, and Safari.

What is figure tag

figure tag is used to insert figure in html.

Difference in HTML5

The figure tag is new in HTML5.

How to use figcaption tag


<figcaption>

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

<figure>
  <img src="images/butterfly.jpg" alt="The yellow Butterfly">
  <figcaption>Fig 1: The yellow Butterfly.</figcaption>
</figure>

Code show like this:

The yellow Butterfly
Fig 1: The yellow Butterfly.

Browser Support

The <figcaption> tag is not supported in Internet Explorer 9, Firefox, Opera, Chrome, and Safari.

What is figcaption tag

figcaption tag means is figure caption. Basically use for Caption of a figure.

Difference in HTML5

The figcaption tag is new in HTML5.

How to use fieldset tag


<fieldset>

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

<form>
  <fieldset>
    <legend>Sign In</legend>
    Your Name: <input type="text"><br>
    Your Email ID: <input type="email"><br>
  </fieldset>
</form>

Code show like this:

Sign In

Your Name:
Your Email ID:

Browser Support

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

What is fieldset tag

fieldset tag is used to fields of form that use into form.

How to add multiple image in one img tag in html

How to use embed tag


<embed>

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

<!DOCTYPE HTML>
<html>
<head>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>
<body>
<embed src="images/glof.swf"></embed>
</body>
</html>

Code show like this:

Browser Support

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

Attention: The <embed> tag is not use single. You must add this two files on this page. Save these files in Script folder and keep this folder with html file, consider your script folder not script folder files with html files.

expressInstall.swf
swfobject_modified.js

What is embed tag

embed tag is used to embed video and swf.