情報処理実習3B(Web)

2017年度 前期 木04 15:15-16:45 瀬田2-119

課題

07.IO/form4ref.html

表示
ソース

<!DOCTYPE html>
<html lang="ja">
<head>
   <meta charset="UTF-8" />
   <title>フォーム入力4 テキスト入力</title>
</head>
<body>
<h1>フォーム入力4 テキスト入力</h1>
<form action="result4ref.php" method="post">
<fieldset>
<legend>1行コメント</legend>
<input type="text" name="text" size="50" value="&lt;h1&gt;htmlタグを入力してみた">
</fieldset>
<input type="submit" value="送信する">
</form>
</body>
</html>