Using meta robots requires adding the <meta name="robots"> tag and the content attribute with the directives you want to apply to your web pages. You can't use multiple contradictory directives, such as index and noindex together. If you want to allow search engines to index and follow your page, use <meta name="robots" content="index, follow"> or leave the tag empty. To prevent search engines from indexing and following your page, use <meta name="robots" content="noindex, nofollow">. Similarly, if you want to prevent search engines from indexing your page but allow them to follow the links on it, use <meta name="robots" content="noindex, follow">. To allow search engines to index your page but prevent them from following the links on it, use <meta name="robots" content="index, nofollow">. Additionally, using <meta name="robots" content="noarchive"> prevents search engines from showing a cached version of your page, while using <meta name="robots" content="nosnippet"> prevents search engines from using a snippet of your page as a description in the search results.