<!DOCTYPE html>
<html lang="ko">
<head>
<title> 회원가입 </title>
</head>
<body>
<h1> 회원가입</h1>
<form id="memfrm" name="memfrm">
이름:
<input type="text" name="unname" id="unname" autofocus required><br>
아이디:
<input type="text" name="userid" id="userid" size="15" maxlength="5" placeholder="아이디를 입력하세요" required>
<input type="button" value="중복확인">
<br>
비밀번호:
<input type="password" name="password" id="password" size="12" maxlength="12" placeholder="비밀번호 입력" required>
<br>
우편번호:
<input type="text" size="6" readonly>
<input type="button" value="주소찾기">
나머지 주소: <input type="text">
<br>
나이:
<input type="radio" name="age" value="10">10대
<input type="radio" name="age" value="20">20대
<input type="radio" name="age" value="30">30대
<br>
성별:
<input type="radio" name="gender" value="male">남
<input type="radio" name="gender" value="female">여
<br>
취미:
<input type="checkbox" id="movie" value="m" name="movie">영화
<input type="checkbox" id="cook" value="c" name="cook">요리
<input type="checkbox" id="game" value="g" name="game">게임
</form>
<br>
<form id="myform" name="myform">
<button>버튼1</button>
<br>
생년월일:
<select name="b_day" id="b_day">
<option value="2021">2021년</option>
<option value="2022" selected>2022년</option>
<option value="2023">2023년</option>
</select>
<br>
<select name="month" id="month" multiple>
<option value="jan">1</option>
<option value="feb">2</option>
<option value="mar">3</option>
<option value="apr">4</option>
<option value="may">5</option>
</select>
<br>
배송 메세지:
<textarea cols="50" rows="30" maxlength="200">200자 이내로 작성</textarea>
<hr>
<input type="submit" value="전송">
<input type="reset" value="취소">
</form>
</body>
</html>