Latest Post

Internal Styles - Universal

Internal Styles - Universal

 


 <head>  
 <style>  
 a  
 {  
 color: green;  
 }  
 </style>  
 </head>  
   
<a href="explainpoint.php">explainpoint</a>  

If we use internal styles like this, the style will take effect for the tag through out the page. That's all the "a" tag used in the page will have the style.
Example:
This page defines the style as explained above. So we can see how a "a" tag looks like


Result:

Explainpoint