フォーム(form, input, select, textarea)
<html> <head> <title>フォーム</title> </head> <body> <form action="../../sample/sample.cgi" method="post"> テキストボックス<br> <input type="text" name="text1" value=""><br> <input type="text" name="text2" value="テキストボックス" size="50"><br> <br> パスワード<br> <input type="password" name="pass" maxlength="8"><br> <br> ラジオボタン<br> <input type="radio" name="radio1" value="1" checked>ラジオ1 <input type="radio" name="radio1" value="2">ラジオ2<br> <br> チェックボックス<br> <input type="checkbox" name="check1" value="1">チェック1 <input type="checkbox" name="check2" value="1">チェック2 <input type="checkbox" name="check3" value="1">チェック3<br> <br> プルダウン<br> <select name="select1"> <option value="1">プルダウン1</option> <option value="2" selected>プルダウン2</option> <option value="3">プルダウン3</option> </select><br> <select name="select2" size="2"> <option value="1">プルダウン1</option> <option value="2">プルダウン2</option> <option value="3">プルダウン3</option> </select><br> <br> テキストエリア<br> <textarea name="textarea1" rows="10" cols="70">テキストエリア</textarea><br> <br> <input type="hidden" name="hidden1" value="27"> <input type="submit" value="送 信"> <input type="reset" value="リセット"> </form> </body> </html>
〔 実行する 〕