HTML入門 | HTML入力フォーム(Forms) | HTMLフィールドセット(fieldset)

フィールドセットfieldset要素

fieldset要素は、form要素に関連するデータを1つにまとめる役割を持つ。legend要素はfieldset要素の中でのみ使用でき、fieldset要素のタイトルを表示する。

<form>
  <fieldset>
    <legend>로그인 인증</legend>
    <p>사용자명 : <input type="text" name="username"></p>
    <p>비밀번호 : <input type="password" name="password"></p>
    <button type="button">로그인</button>
  </fieldset>
</form>

コード実行