Front-End/HTML

[HTML] number 태그

찐코딩 2021. 10. 27. 21:24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

	<h3>수량을 선택하세요</h3>
	
	<hr>
	
	<!-- step 값이 따로 정의되어있지 않으면 기본값은 1이다. -->
	<input type="number" min="1" max="20" value="10">

</body>
</html>