フォーム全体の指定
- <form action=""> 入力フォームを作る
- <form method="" action=""> データの送信形式と送信先を指定する
- <form method="" action="" target=""> 結果が表示されるウィンドウを指定する
- <form method="post" action="" enctype=""> 送信時のデータ形式を指定する
- <label> 部品とラベルを関連付ける
- <fieldset> フォームの部品をグループ化する
- <legend> 部品グループにラベルを付ける
- <legend align=""> ラベルの表示位置の指定する
フォームの部品
- <input type="text"> テキストの入力欄を作る
- <input type="password"> パスワード形式の入力欄を作る
- <input type="radio"> ラジオボタンを作る
- <input type="checkbox"> チェックボックスを作る
- <input type="file"> ファイルの送信欄を作る
- <input type="hidden"> 隠しデータを送信する
- <textarea cols="" rows=""> 複数行のテキスト入力欄を作る
- <textarea cols="" rows="" wrap=""> テキストの折り返しを制御する
- <select><option> セレクトボックスを作る
- <optgroup label=""> 選択肢をグループ化する
ボタン
- <input type="submit"><input type="reset"> 送信ボタンとリセットボタンを作る
- <input type="image"> 画像で送信ボタンを作る
- <input type="button"> 汎用的なボタンを作る(1)
- <button type=""> 汎用的なボタンを作る(2)