Files
programming-examples/html/_Basics/Creating HTML5 tel input type.html
Michael Reber b880c3ccde Initial commit
2019-11-15 12:59:38 +01:00

13 lines
288 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>HTML5 Tel Input Type</title>
</head>
<body>
<form>
<label>
Telephone Number: <input type="tel" name="mytelephone" required>
</label>
</form>
</body>
</html>