<!DOCTYPE html>
<html lang="ko">
<head>
<title> form </title>
</head>
<body>
<h3>폼 관련된 속성들</h3>
<form action="ok.jsp" name="loginform" id="loginform">
아이디: <input type="text" name="useid"> <hr>
비밀번호: <input type="password" name="userpw"> <hr>
<input type="submit" value="전송">
</form>
<hr>
<form enctype="multipart/form-data">
파일: <input type="file">
</form>
<form method="get"></form>
<h3> 2. type=image </h3>
<form action="ok2.jsp">
<img src="../images/b_muzi.png" alt="무지">
<hr>
<input type="image" src="../images/b_apeach.png">
<hr>
검색: <input type="text" name="search">
<input type="image" src="../images/b_tube.png">
</form>
<hr>
<h3>다양한 input type</h3>
<input type="hidden" id="page" name="page" value="3">
<hr>
<input type="number" id="quantity" name="quantity" min="1" max="5">
<input type="range" id="vol" name="vol" min="0" max="50">
<hr>
<input type="color"><hr>
<input type="data"><hr>
<input type="search"><hr>
<input type="time"><hr>
<input type="date"><hr>
<h3>label </h3>
<label for="user">이름:</label>
<input type="text" id="user">
</body>
</html>