Index Carpetas
<h1>Print page</h1>
<section>
<!-- Replace '{action page}' with your own action page to support non-JavaScript users -->
<form name="myForm" action="{action page}">
<input id="print" type="button" value="Print this Page">
</form>
<script>
// Wait for DOM to load
document.addEventListener("DOMContentLoaded", function(event) {
// Put the button into a variable
var e = document.getElementById("print");
// Wait for user to click the button
e.addEventListener("click", function() {
window.print();
}, false);
});
</script>