WEB/HTML
[HTML] 입력
Sh-YE
2024. 4. 19. 12:55
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>다양한 입력 요소 만들기</title>
</head>
<body>
<input name="text" type="text" maxlength="5" placeholder="메시지를 입력하세요"/> <br><br>
<input name="button" type="button" value="push"/> <br><br>
<input name="color" type="color" /> 색상선택! <br><br>
<input name="range" type="range" min="0" max="100" step="10" /> <br><br>
<input name="date" type="date" /> <br><br>
</body>
</html>
색상선택!