formタグやinputタグを用いてフォームを作成する。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>【HTML】フォームを作成する</title>
</head>
<body style="background-color:lightyellow">
<h1>いのはの掲示板へようこそ!</h1>
<form action="index.html" method="post">
<p>名前:<input type="text" name="hn"></p>
<p>メッセージ:<input type="text" name="msg"></p>
<input type="submit" name="submit">
</form>
</body>
</html>