<!DOCTYPE html> <html> <body> <h2 style="color: green">Horje</h2> <h2>HTML form Attribute</h2> <b>This will avoid information passed to the post page </b> <!-- It avoids passing the referrer information to target website by removing the referral info from the HTTP header. It is safe to use --> <form rel="noreferrer" action="mypage.php"> <input type="search" placeholder="search here" /> <input type="button" value="search" /> </form> </body> </html>