0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【フロントエンド1000本ノック】0010_fieldsetとlegendを使い、関連するフォーム部品をグループ化せよ。

Posted at

はじめに

こんにちは、赤神です!
この記事は、「1000本ノック」という取り組みの中のフロントエンドのための課題の1つです。

「1000本ノックとは」
https://qiita.com/sora_akagami/items/c8da4296dea3823376ca

それぞれのタグの説明

  • <fieldset>:フォームの入力項目をグループ化するためのタグ
  • <legend>:親要素である <fieldset> の内容のキャプションを表すためのタグ

作成したコード

index.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>フロントエンド1000本ノック 0010</title>
</head>
<body>
    <main>
      <h1>性別入力フォーム</h1>
      <form action="/submit-form" method="post">
        <fieldset>
          <legend>性別</legend>

          <input type="radio" id="male" name="gender" value="male">
          <label for="male">男性</label>

          <input type="radio" id="female" name="gender" value="female">
          <label for="female">女性</label>

          <input type="radio" id="other" name="gender" value="other">
          <label for="other">その他</label>
        </fieldset>

        <button type="submit">送信</button>
      </form>
    </main>
    <footer>
      <p>Copyright 2025</p>
      <p>フロントエンド1000本ノック</p>
    </footer>
</body>
</html>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?