<input type=month>は、月の入力欄を表す際に使用します。
input要素のtype属性の値に month を指定すると、
要素の値は特定の月を表します。
以下のサンプルでは、
input type=monthで月の入力欄を作成して、
min属性とmax属性で入力値を2023年4月~2024年3月の期間に制限しています。
<input name=dm type=month min="2023-04" max="2024-03">
以下のサンプルでは、input要素のtype=monthを使用して
年/月の入力欄を作成しています。
<fieldset>
<p><label>カード名義人: <input name=clubname required></label></p>
<p><label>カード番号: <input name=clubnum required pattern="[-0-9]+"></label></p>
<p><label>有効期限: <input name=clubexp type=month></label></p>
</fieldset>
HTMLの仕様では、input要素には終了タグ</input>はありません。