@media print {
    html, body {
       display: none;  /* hide whole page */
    }
}
h1,h2,h3,h4,h5,h6,p,span,div{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}