Submission Form
/* Standard styling for the screen */
.print-button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 4px;
}
/* Styling applied ONLY when printing */
@media print {
/* Hide the print button, navigation, and sidebars on the paper */
.print-button, nav, sidebar, footer {
display: none !important;
}
/* Optimize the body text for black and white printing */
body {
background: white;
color: black;
font-size: 12pt;
}
}
<p>Hello, World!</p>