<input type=tel>は、電話番号の入力欄を表す際に使用します。
ユーザーは、CRやLFなどの改行コードを入力することはできません。
以下のサンプルでは、input要素のtype属性の値に tel"や"email"を指定して、 電話番号やメールアドレスに適した入力欄を作成しています。
<form>
<p><label>お名前: <input></label></p>
<p><label>電話番号: <input type=tel></label></p>
<p><label>メール: <input type=email></label></p>
<fieldset>
<legend>ピザのサイズ</legend>
<p><label><input type=radio name=size> Small </label></p>
<p><label><input type=radio name=size> Medium </label></p>
<p><label><input type=radio name=size> Large </label></p>
</fieldset>
<fieldset>
<legend>ピザのトッピング</legend>
<p><label><input type=checkbox>ベーコン</label></p>
<p><label><input type=checkbox>チーズ</label></p>
<p><label><input type=checkbox>オニオン</label></p>
<p><label><input type=checkbox>マッシュルーム</label></p>
</fieldset>
</form>