'page' Example : page « CSS « HTML / CSS






'page' Example

    
<html>
<head>
<style type="text/css">
@page:first { 
    font-family:Times New Roman; 
    font-size:18pt; 
    color:blue; 
}
@page:left { 
    font-family: Verdana; 
    font-size: 14pt; 
}
@page:right { 
    font-family: Verdana; 
    font-size: 14pt; 
}
</style>
</head>
<body>
<p>(body content)</p>
</body>
</html>
      
      
      








Related examples in the same category