<input type=url>は、URLの入力欄を表す際に使用します。
input要素のtype属性の値に url を指定すると、
そのinput要素はURL(単一の絶対URL)を編集するためのコントロールを表します。
以下のサンプルでは、input要素のtype属性の値に url を指定して、URL入力欄を作成しています。
<label>URLを入力: <input name="hp" type="url" list="hpurls"></label>
<datalist id="hpurls">
<option value="https://www.google.com/" label="Google">
<option value="https://www.reddit.com/" label="Reddit">
</datalist>
HTMLの仕様では、input要素には終了タグ</input>はありません。