Add a button to allow your visitors to print your Web page. Compact and simple, yet highly requested.
<!– Paste this code into the STYLE section of your HTML document
so the button itself will not print –>
@media print {
input.noPrint { display: none; }
}
<!– Paste this code into the BODY section of your HTML document –>
<input class=”noPrint” type=”button” value=”Print This Page” onclick=”window.print()”>