フォーム全体の設定 |
- <form>
入力フォームを作る
- <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>
複数行のテキスト入力欄を作る
- <select><option>
セレクトボックスを作る
|
|
ボタン |
- <input type="submit"><input type="reset">
送信ボタンとリセットボタンを作る
- <input type="image">
画像で送信ボタンを作る
- <input type="button">
汎用的なボタンを作る(1)
- <button type="">
汎用的なボタンを作る(2)
|
|
|
|
:HTML4.01では非推奨とされているタグや属性 | |
|