Answers for "how to add a print button to html page"

0

print page button html

<button onclick="window.print();return false"
>Print this page</button>
Posted by: Guest on June-20-2021
0

how to add print button on my website

<input type="button" value="Print this page" onClick="window.print()">

Or

<button type="button" class="print" onClick="window.print()">Print</button>
Posted by: Guest on December-05-2020
0

print button html

onclick="window.print();return false;
Posted by: Guest on December-16-2020

Code answers related to "how to add a print button to html page"

Browse Popular Code Answers by Language