入力テキストフォームと送信ボタンを画像の上 (背景画像、commentpaper.jpg の上ではなく) に追加して配置しようとしていますが、多くの困難があります。これは、これまでの html ページの内容です。
Html と Css は初めてなので、可能な限り簡単な方法で問題ありません。事前にご協力いただきありがとうございます。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Have Your Say</title>
<meta name="description" content="Have Your Say.">
<meta name="keywords" content="Have Your Say, Comments">
<link rel="stylesheet" href="style.css">
<img src="commentpaper.jpg" alt="header" width="1050" height="600">
</head>
<body>
<div id="wrapper">
<div id="header">
</div>
<div id="nava">
<ul id="navlist">
<li><a href="Index.html">Home</a></li>
<li><a href="Quiz.html">Weird Stuff</a></li>
<li><a href="Comments.html">Have Your Say</a></li>
</ul>
</div>
<center>
<form action="" method="GET">
<textarea name="comments" rows="10" wrap="hard"></textarea>
<input name="redirect" type="hidden" value="index.html">
<input name="next_url" type="hidden" value="index.html">
<br>
<input type="submit" value="Send">
<input type="reset" value="Clear">
</form>
</center>
</body>
</html>