Advance SEO Meta Tag for website
SEO Help and Tips
Advance SEO Meta Tag for website
Here are some commonly used meta tags that can be beneficial for server-related purposes:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
X-UA-Compatible: Defines the compatibility mode for Internet Explorer.
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Content-Security-Policy: Helps prevent cross-site scripting (XSS) attacks by defining a set of content security policies.
<meta http-equiv="Content-Security-Policy" content="default-src 'self';">
X-Frame-Options: Prevents the webpage from being displayed in an iframe on other websites.
<meta http-equiv="X-Frame-Options" content="DENY">
Strict-Transport-Security: Enforces the use of HTTPS for secure communication.
<meta http-equiv="Strict-Transport-Security" content="max-age=31536000">
Referrer-Policy: Specifies how the referrer information is passed when navigating to another page.
<meta name="referrer" content="no-referrer">
These meta tags can be included in the <head> section of your HTML document.
Remember to adjust the values based on your specific requirements and security considerations.
Comments
Post a Comment
Thanks for your Comments.