English
<!--Add the following code to the <body> area--> <script> function look() { if(event.keyCode==123){ window.location='view-source:'+window.location.href ;} if(event.keyCode==120){ window.print();} } if(document.onkeydown==null) {document.onkeydown=look; document.write("<br><br>Function key description :<br> <FONT COLOR=red>F12</font>: View the code.<br> <FONT COLOR=red>F9</font>: Print this page.") } </script>