HTML/CSS/CSS Attributes and Javascript Style Properties/page
"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>