Search

0409_기타기능

대분류
HTML4 폼
소분류
HTML4
개념
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> 신발사이즈 <input type="number" min="230" max="290" step="10" value="260"> <hr> 테니스 스킬 <input type="range" min="1" max="10" value="1"> <hr> 색상선택: <input type="color"> <hr> 생일 <input type="date"> <hr> 시작시간 <input type="time"> <hr> 파일업로드 <input type="file" id = "user_profile" accept="image/*, video/*" required placeholder="프로필사진" /> </body> </html>
HTML
복사