코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML input tag - src attribute</title> </head> <body> <form action="/examples/media/action_target.php" method="get"> 캐릭터명 : <input type="text" name="char_name"><br> 아바타 : <input type="image" src="/examples/images/img_penguin.png" name="avatar" alt="아바타"> </form> </body> </html>