<input type="text">
<input type="email">
<input type="password">
<input type="radio">
<input type="file">
<input type="checkbox">
<input type="submit">
<select>
<option>옵션1</option>
</select>
<textarea></textarea>
input속성들
placeholder="배경글자"
value="미리 입력된 값"
name="서버 기능 개발시 input이름"
input[type=email] {
color : grey
}
css셀렉터를 사용해 특정 속성에만 스타일링 가능
전송버튼은
<button type="submit">전송</button>
<input type="submit">
둘중하나 선택
form태그 안에 있어야 잘 동작
<input type="checkbox" id="subscribe">
<label for="subscribe">누르기</label>
label과 for속성을 사용하면 input을 선택할 수 있다.
input에 제목이 필요할 때도 이 태그를 이용하는 경우가 있다.