I would like to add some text to my HTML that is not accessible or indexed by search bots.
Is it possible to have visible text on a site that is not accessible to search bots?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes there are a few ways:
1. Deny access with robots.txt (to directories, html pages)
2. Add robots meta-tag to your html page:
3. Use
<noindex>tag. Note that it’s not supported by all search-robots;4. Use javascript (to hide just some text and not the whole page).