HTML CSS Reference/HTML Attributes Reference/href

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

"href" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For href</Title></head> <BODY> <a href="#jumpto">Scroll down to the bottom paragraph</a>









































This is the last paragraph on the page

</BODY> </HTML>


     </source>
   
  


href is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<a> <area> | | |<base> <link> (not NN4) | +----------------+--------------------------------------------------------------+

     </source>
   
  


href Possible Values

   <source lang="html4strict">

Possible Values URL Specifies the location of the requested file.

  1. name Specifies the target anchor "#name".

Filename Specifies the name of a file in a network or local hard drive. Other protocols You can use any of the following protocols in your href value:

                afs://      AFS file access. 
                cid://      Content identifiers for MIME body part.
                file://     Specifies the address of a file from the locally accessible drive.
                ftp://      Uses Internet File Transfer Protocol (FTP) to retrieve a file.
                http://     The most commonly used access method. 
                https://    Provide some level of security of transmission 
                mailto://   Opens an email program.
                mid://      The message identifier for email.
                news://     Usenet newsgroup.
                x-exec://   Executable program.
   
     
     </source>
   
  


"href" Syntax and Note

   <source lang="html4strict">

Note:

The href attribute sets URL or anchor point of the <a>, <area>, <base>, and <link> elements.

Syntax:

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


     </source>