I am looking to exclude the print button from a hard copy when it is printed.
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<p>
This is just a paragraph, and I do not want the print button to appear in the hard copy.
</p>
<input type="button" value="print" onclick="window.print()" />
</body>
</html>
If you know of a resource that explains how to properly print a hard copy of a specific section of a webpage, please share the reference. Thank you.