<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<h2>Example of preventing tab indexing</h2>
<form action="/form/submit" method="post">
<input type="text"/>
<input tabindex="-1" placeholder="NoTabIndex"/>
<input type="text"/>
</form>
</body>
</html>