<input type=tel>は、電話番号の入力欄を表す際に使用します。
input要素のtype属性の値に tel を指定すると、
そのinput要素は電話番号を編集するためのコントロールを表します。
ユーザーは、電話番号の入力欄に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>
HTMLの仕様では、input要素には終了タグ</input>はありません。