INPUT FIELD WITH NO AUTOCOMPLETE
Run
<!DOCTYPE html>
<html lang="en">
<head>

<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML</title>

</head>  
<body>
    <h2> No suggestion input field</h2>
   <form method="post" action="/form" autocomplete="off">
     <div>
      <label for="name">Name</label>
      <input type="text" id="name" name="name" autocomplete="off">
      </div>
      <br>
      <div>
  
       <label for="roll">Roll </label>
       <input type="text" id="roll" name="roll" autocomplete="off">
      </div>
   </form>
</body>
</html>