"> Insert title here








"> Insert title here








">

image.png

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

<form>
	<input type="text" placeholder="이름을 작성하세요." required> <br>
	<input type="checkbox"> <input type="checkbox"> <br>
	<input type="file"> <br>
	<input type="number" min="1" max="3" value="1" readonly> <br>
	<input type="password" placeholder="비밀번호를 작성하세요." disabled> <br>
	남<input type="radio" name="gender" checked> 여<input type="radio" name="gender"> <br>
	<input type="range" min="0" max="10" value="5"> <br>
	<input type="button"> <br>
	<input type="submit" value="데이터 전송">
</form>

</body>
</html>