Answer by
trippedwire (31)
The html tag noindex is used to avoid indexing a page. In other words, if you want to prevent your page being listed from search engines, you would use this code inside of your meta tags.
For example:
<html>
<head>
<meta name="robots" content="noindex" />
<title>Don't index this page</title>
</head>