Website SEO performance and accessibility Boost
SEO Help and Tips
Website SEO performance and accessibility Boost Code
- {<meta charset='UTF-8'><meta content='width=device-width' name='viewport'>}
<!-- SEO Metadata -->
- { <meta name="description" content=" website description"> }
<!-- Accessibility -->
- { <meta name="robots" content="index, follow">
- <meta name="googlebot" content="index, follow">
- <meta name="bingbot" content="index, follow">
- <link rel="canonical" href="https://example.com"> }
<!-- Open Graph -->
- { <meta property="og:title" content="Website title">
- <meta property="og:description" content="website description">
- <meta property="og:url" content="website url">
- <meta property="og:type" content="website"> }
<!-- Twitter Card -->
- { <meta name="twitter:card" content="summary">
- <meta name="twitter:title" content="description">
- <meta name="twitter:description" content="description">
- <meta name="twitter:url" content="url"> }
<!-- Stylesheets -->
- <link rel="stylesheet" href="styles.css">
<!-- JavaScript -->
- <script defer='defer' src='path/to/script.js'>
SEO Optimized Meta Tags:Example: {<meta charset="UTF-8">}
viewport - Defines the viewport settings for the webpage.Example: {<meta name="viewport" content="width=device-width, initial-scale=1.0">}
description - Provides a brief description of the webpage's content.Example: {<meta name="description" content="This is a description of the webpage.">}
keywords - Specifies a list of keywords relevant to the webpage's content.Example: {<meta name="keywords" content="keyword1, keyword2, keyword3">}
author - Specifies the name of the author of the webpage.Example: {<meta name="author" content="John Doe">}
robots - Tells search engines how to index and crawl the webpage.Example: {<meta name="robots" content="index, follow">}
og:title - Provides a title for the webpage when it is shared on social media platforms.Example: {<meta property="og:title" content="Title of the Webpage">}
og:description - Provides a description for the webpage when it is shared on social mediaplatforms.Example: {<meta property="og:description" content="Description of the Webpage">}
og:image - Specifies an image to be displayed when the webpage is shared on socialmedia platforms.Example: {<meta property="og:image" content="https://example.com/image.png">
}These are just a few examples of common meta tags used in HTML code. The specific meta tags used may vary depending on the purpose and content of the webpage.
Comments
Post a Comment
Thanks for your Comments.