어떻게 만들까요: 파일 업로드 버튼

HTML로 파일 업로드 버튼을 만들어보세요.

“파일 선택” 버튼을 클릭하여 파일을 업로드할 수 있습니다:

예제

<form action="/action_page.php">
  <input type="file" id="myFile" name="filename">
  <input type="submit">
</form>

자신의 손으로 시도해보세요