프로그래밍

입력태그#3

wonjae 2021. 11. 27. 10:48

<!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>