You already have an HTML page; the one where the button is. You can have different style sheets for the page for the screen and the printer using the media asttribute or @media directive. You can have different looks and layout for when the page is printed, or you can even have a completely different set of elements.
Example:
#PrintContent { display: none; }
@media print {
#RegularContent { display: none; }
#PrintContent { display: block; }
}
To have the button print the page, just use the print method:
<input type="button" onclick="window.print();" value="Print me!" />
This will of course not just start printing, but opens the print dialog. To print something without that dialog you would need to run a component in the browser, but starting the component would require user confirmation, so you would get a dialog anyway, and a much more intimidating one.