How to add a Print Button to a modal

I would like to add a print button to my modal which collates some data.

<button onclick="myFunction()">Print this page</button>

<script>
function myFunction() {
    window.print();
}
</script>

OK - got it

<input type="button" 
  onClick="window.print()" 
  value="Print This Page"/>