Html Noframes Tag

In the HTML <noframes> tag is used to do not handle frames at browsers and which tag includes all tags and which tag you can use to inside of <body> tag. Mostly which tag is used to link for non frame web site. It tag we will use at inside of frameset tag.All main browser is supported <noframes> tag.

The standard attributes are class, dir, id, lang, style ,title ,xml:lang and event attributes onclick, ondblclick, onmousedown ,onmousemove ,onmouseout ,onmouseover, onmouseup, onkeydown, onkeypress and onkeyup.

Syntax:

<frameset>
  <noframes> ... </noframes>
</frameset >

Example Code

<frameset>
  <noframes>
    This is No Frame Place.
  </noframes>
    This is Other Frame Place.
</frameset>

Out Put :



This is No Frame Place. This is Other Frame Place.

In the above example output will displaying is "This is Other Frame Place". which out put display from other place of no frameset tag.





Content