w3.css
파일 업로드 버튼
HTML로 파일 업로드 버튼을 만드는 방법을 알아보자.
파일 업로드
1단계) HTML 추가
기본적으로 폼 요소 안에 텍스트를 입력하면 철자가 올바르지 않거나 틀리게 쓰인 단어 아래에 빨간색 밑줄이 표시된다.
그러나 다음을 사용하여 spellcheck=”false”철자 검사를 끌 수 있다.
<form action="/action_page.php"> <input type="file" id="myFile" name="filename"> <input type="submit"> </form>
기본 예시
예제 보기참고
W3C School - How TO - File Upload Button