anasazhar

print

Nov 11th, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Print This Page</title>
  5. <style type="text/css">
  6. @media print {
  7. .screen-only {
  8. display: none;
  9. }
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <p>This a paragraph</p>
  15. <p>This a second paragraph</p>
  16. <p class="screen-only">This paragraph won't appear when you print this page</p>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment