I have a page with lots of data, tables and content. I want to make a print version that will only display very few selected things.
Instead of writing another page
I suggest to hide the element that you won't print:
HTML
Welcome Just Screen I want print this section :) It's display only on screen
CSS
@media print { .no-print { display: none; } }