[html] input



<html>
<body>
<form action="input.jsp" method="post">
이메일 : <input type="email" name="email"/><br/>
URL : <input type="url" name="url"/><br/>
전화번호 : <input type="tel" name="tel"/><br/>
색상 : <input type="corol" name="corol"/><br/>
월 : <input type="month" name="month"/><br/>
날짜 : <input type="date" name="date"/><br/>
주 : <input type="month" name="week"/><br/>
시간 : <input type="time" name="time"/><br/>
지역시간 : <input type="datetime-local" name="localdatetime"/><br/>
숫자 : <input type="number" name="number" min="1" max="10" step="2"/><br/>
범위 : <input type="range" name="range" min="1" max="10" step="2"/><br/>
<input type="submit" value="제출"/>
</form>
</body>
</html>


<!--
- form : 랩핑해서 한방에 보내고 받아오는 형식
            폼안에 있는 내용을 한번에 서버에 보낸다.
             http://www.nextree.co.kr/p8428/  웹사이트 참고
-->

댓글