インデントの全角スペースは適宜タブに置換してください。

<html><head>
  <meta http-equiv="Content-type" content="text/html;charset=Shift_JIS">
  <title>検索フォームを検証する</title>
</head><body>
<form method="GET" action="http://find.2ch.net/"; style="display: inline;">
  <input type=text name="q" value="" style="width:500px;height:30px;" id="fulltext-keyword" onkeyup="cp()" onchange="cp()">
  <input type=hidden name="ita" value="operatex">
  <button type="submit" value="">【新】全文検索</button>
</form>
<form method="GET" action="http://dig.2ch.net/"; accept-charset="UTF-8" style="display: inline;">
  <!--SJISにない文字がフォームにあると、IE8以下互換モードにしても
    きちんとUTF-8になるらしい。-->
  <input type=hidden name="utf8" value="&#x2713;"-->
  <input type=hidden name="keywords" value="" id="thread-keyword">
  <input type=hidden name="Bbs" value="operatex">
  <button type="submit" value="">スレタイ検索</button>
</form>
<!--ここのjQueryコード、Firefox最新版でもIE8でも動かない。愚直に書く。
script src="https://code.jquery.com/jquery-1.12.1.min.js"; crossorigin="anonymous"></script>
<script>$("#fulltext-keyword").on("keyup change",function(){var e=$(this).val();$("#thread-keyword").val(e)});
</script>-->

<script>
function cp() {
  document.getElementById('thread-keyword').value
    = document.getElementById('fulltext-keyword').value;
  return true;
}</script></body></html>