How do I add this code to my End of Survey?
function addPrintBlur() {
  const style = document.createElement('style');
  style.textContent = `
    @media print {
      body {
        filter: blur(10px); /* Adjust the blur intensity as needed */
      }
    }
  `;
  document.head.appendChild(style);
}
// Call the function to add the CSS rule
addPrintBlur();
