웹 페이지에서의 입력 양식을 의미.
<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[type=email] {
color : grey
}
input의 타입 속성이 email인 것만!
++) 전송 버튼은 아래 둘 중에 하나로 쓰면 된다..
<button type="submit">전송</button>
<input type="submit">