HTML Input Tel Generator
Generate an <input type="tel"> field — set the name, label, placeholder, and validation, then copy the ready-to-use HTML. Free, instant, no AI involved.
Input
Use lowercase, descriptive names with underscores or dashes for readability (e.g., phone_number or contact-tel).
Settings
Regular expression for validation (e.g., '[0-9]{3}-[0-9]{3}-[0-9]{4}' for format 123-456-7890).
Add custom CSS classes to the element. Separate multiple classes with spaces.
Output
Guides
Build a ready-to-paste <input type="tel"> field — set the name, label, placeholder, and validation rules (required, pattern, min/max length, size), then copy the HTML straight into your page. The tel type brings up a numeric keypad on mobile devices, making it ideal for phone number entry.
Runs entirely in your browser: no AI call, no credits, no network round-trip. The output updates instantly as you type.
How to use it
- Set the Name (used for the
name/idattributes) and Label. - Adjust Settings — required, autocomplete, pattern, length limits — to match your form's validation needs.
- Copy or download the generated HTML.
Why is there no live preview?
The output is real, unsanitized form markup (<input>, <label>) — rendering it directly on the page isn't safe. Paste the code into your own page to see it in context.
Use it from code
From 3 credits per callREST API
curl -X POST https://api.iotools.cloud/v1/tool/html-generator/input-tel \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"customName": "phone-number",
"customLabel": "Phone Number",
"customPlaceholder": "+1 (555) 123-4567",
"customRequired": "",
"customAutocomplete": "true",
"customDisabled": "",
"customReadonly": "",
"customMinLength": "",
"customMaxLength": "",
"customPattern": "",
"customSize": "20",
"customClasses": ""
}'Swap in your own key from your account. The tool's fields are the body — no wrapper.
Ask an AI agent
Use the IOTools `html-generator__input-tel` tool (HTML Input Tel Generator) on this input:
YOUR_INPUT_HEREPaste this at any agent connected to the IOTools MCP server, then add your input.