Answers for "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

Browse Popular Code Answers by Language