Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<link rel="stylesheet" type="text/css" href="defaultprint.css" id="printingCSS" media="print" />
* {
display: none;
}
div#myDiv {
display: block;
}
document.getElementById('printingCSS').href = 'divprint.css';
document.print();
document.getElementById('printingCSS').href = 'defaultprint.css';
<html><head>
<style media="print">
.noPrint {display:none;}
</style>
</head>
<div class = "print"> this will be your print layer</div>
<div class = "noprint">this layer won't print <a href = # onClick="window.print()">
this could be a button</a></div>
<body>
</html>