0
HTML 5
Designate the username field as required, and focus on the name field when the page loads: <form autocomplete="off"> <input name="name" type="text" /> <br /> <input name="username" type="text" /> </form>
1 Odpowiedź
+ 2
//Solution
<form autocomplete="off">
<input name="name"
type="text"
autofocus/>
<br />
<input name="username"
type="text"
reuired/>
</form>