If an input has no name specified, or name is empty, the input's value is not submitted with the form
input 태그에 이름이 명시되지 않으면 input에 작성한 값이 전송되지 않는다.
When specified in the HTML, this is the initial value
HTML 태그에 명시된 경우 초기 값을 의미한다.
과제에서 살펴보았듯이 위와 같이 작성할 경우 value는 값을 지정해준다. 값에 대한 key 값이 game이다. 아래주소에서 들어가는 형태를 보면 'game=1'로 들어간다. 정리하면 name은 'key'고 value는 key에 대한 값이다.
<http://127.0.0.1:8000/lotto/result/?game=1>
: 입력 요소 - HTML: Hypertext Markup Language | MDN