CodeLab
Show Output
 
 
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Example of CSS Universal Selector</title>
6
<style>  
7
    * {  
8
       color:#11a286;  
9
       font-size:18px;  
10
    }   
11
</style> 
12
</head>
13
<body>  
14
      <h1>This is a heading.</h1>  
15
      <p>This is a paragraph.</p>  
16
      <p>This is a another paragraph</p>  
17
 </body>
18
</html>                            
 

Share this example with Facebook, Twitter