Sign In
Sign in to continue
Register
Create a new account


// Create a new element var meta = document.createElement('meta'); // Set the necessary attributes for "noindex" meta.name = 'robots'; meta.content = 'noindex'; // Append the new element to the document's document.head.appendChild(meta);