<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>test.html</h1>
<!-- 이 곳은 HTML 주석으로 HTML 태그가 적용(실행)되지 않는 부분입니다. -->
<!-- <form> 태그는 사용자로부터 입력하는 데이터를 묶어주는 태그입니다. -->
<!-- <form action=""> -->
<input type="text"><br>
<form action="test_result.html">
<input type="text"><br>
<input type="text" placeholder="이름을 입력하세요"><br>
<input type="text" value="1"><br>
<input type="number" value="1"><br>
<input type="text" value="홍길동" readonly="readonly"><br>
<hr>
취미 : <input type="checkbox" name="programming"><label for="programming">프로그래밍</label>
<input type="checkbox">등산
<input type="checkbox" checked="checked">영화감상
<br>
성별 : <input type="radio" name="gender" value="male">남
<input type="radio" name="gender" value="female" checked="checked">여
<hr>
날짜 : <input type="date">
<input type="button" value="확인">
<hr>
직업 :
<select>
<option>직업을 선택하세요</option>
<option selected="selected">개발자</option>
<option disabled="selected">건물주</option>
<option>아르바이트</option>
</select>
<hr>
<!-- 자기소개 : <textarea></textarea> -->
자기소개 : <textarea rows="8" cols="20"></textarea>
<hr>
<input type="submit" value="가입">
<input type="reset" value="초기화">
</form>
</body>
</html>
Insert title here