

    
    
  /links ( 
 , , 

 . ).   ,  
 CSS    
 -,  
  , 
 
,   , 
   
  .  
   
  
 .   
  
 .

  ?

  
   
    
 HTM-.

 .   
,  
  HTML 
 <a>.  CSS   
 
a   :

a {
color: blue;
}

    
. ,   
/visited   . 
 
   
    
 .

a:link {
color: blue;
}

a:visited {
color: red;
}

 a:link  a:visited
   
 , 
.  

  a:active,  
a:hover,   -  
.

    
   
    .


: link

 :link
    
,  
   .

    
 - .

a:link {
color: #6699CC;
}

: visited

 :visited
    
,  
 .  
 
  -
.

a:visited {
color: #660099;
}

: active

 :active
   
.

    
  .

a:active {
background-color: #FFFF00;
}

: hover

 :hover
  ,  
  
 .

    
  
. ,  
 ,   
 
    
  ,   
CSS   :

a:hover {
color: orange;
font-style: italic;
}
 


 1:   
   


   
    
   . 
   

   
:hover.

 1a:  
 

     5, 
  
  
  letter-
spacing.  
  :

a:hover {
letter-spacing: 10px;
font-weight:bold;
color:red;
}

 1b: UPPERCASE  
lowercase

  5   
 text-transform, 
   
     
.
   
   
  :

a:hover {
text-transform: uppercase;
font-weight:bold;
color:blue;
background-color:yellow;
}

    
  
  
 .  
  
  -
!
 


 2:  
 

  -   
 ?

   , 
   
 ,   
   
 
 .   
    
   
,     
.  
  !   
   
  , 
 ,   
  
     
   
.

-  
   
.  ,  , 
   5, 
text-decoration  
   
 .  
  

  text-decoration
 none.

a {
text-decoration:none;
}

  
  text-
decoration,    
,   
 .

a:link {
color: blue;
text-decoration:none;
}

a:visited {
color: purple;
text-decoration:none;
}

a:active {
background-color: yellow;
text-decoration:none;
}

a:hover {
color:red;
text-decoration:none;
}

