HTML CSS Reference/HTML Attributes Reference/security

Материал из Web эксперт
Перейти к: навигация, поиск

"security" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For security</Title></head> <BODY> <iframe id="frame1"

       security="restricted" 
       name="myFrame1" 
       src="http://www.wbex.ru"
       style="width:30%">

</BODY> </HTML>


     </source>
   
  


security is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<frame> <iframe> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"security" Syntax and Note

   <source lang="html4strict">

Note:

This attribute sets whether the source file has security restrictions. If its value is restricted, security settings are applied to the source file.

Syntax:

<element security="value"> . . . </element>


     </source>