HTML で次のボタン コードを使用します。
<input type="button" value="Back" onclick="window.history.back()" />
アップデート
これらのファイルを試してテストしてください...
ファイル名: page1.htm
<html>
<head>
<title>page 1</title>
</head>
<body>
PAGE 1<br />
<a href="page2.htm">Jump to page 2</a><br />
<a href="page3.htm">Jump to page 3</a><br />
</body>
</html>
ファイル名: page2.htm
<html>
<head>
<title>page 2</title>
</head>
<body>
PAGE 2<br />
<a href="page3.htm">Jump to page 3</a><br />
<input type="button" value="Back" onclick="window.history.back()" />
</body>
</html>
ファイル名: page3.htm
<html>
<head>
<title>page 3</title>
</head>
<body>
PAGE 3<br />
<a href="page1.htm">Jump to page 1</a><br />
<input type="button" value="Back" onclick="window.history.back()" />
</body>
</html>