코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML input tag - autofocus attribute</title> </head> <body> <form action="/examples/media/action_target.php" method="get"> 이름 : <input type="text" name="st_name"><br> 학번 : <input type="text" name="st_id" autofocus><br> 학과 : <input type="text" name="department"><br> <input type="submit"> </form> </body> </html>