본문 바로가기

프로그래밍

입력태그#3

<!DOCTYPE html>
<html>
<body>
<form>
이메일: <input type="email" name="emial" requried><br>
URL: <input type="url" name="url" required><br>
전화번호:
<input type="tel" name="tel  requried"
pattern="[0-9]{4}-[0-9]{4}-[0-9]{4}"
title="####-####-####"><br />
<input type="submit" /><br>
신발사이즈:
<input type="nunber" min="230" max="300" step="10" value="260" name="shoesize"><br>
테니스 스킬:
<input type="range" min="1" max="10" value="1">
    </form>
</body>
</html>

'프로그래밍' 카테고리의 다른 글

블로그 페이지  (0) 2021.12.25
css#1  (0) 2021.12.11
입력태그#2  (0) 2021.11.27
입력태그#1  (0) 2021.11.27
입력태그  (0) 2021.11.20