1<!DOCTYPE html>
2<html>
3<head>
4    <title>autofocus on form control</title>
5</head>
6<body>
7    <div>Below form control has autofocus attribute set.</div><br />
8    <form action="">
9        <span>Textbox: </span><input autofocus="autofocus" type="text" name="movie" />
10    </form>
11</body>
12</html>
13