html / java用户输入数据并保存,然后显示在第二页上

我希望用户能够输入保存文件的位置及其名称,然后在第二页上记住用户输入的所有不同内容,并向他们显示如何实现此目的。

    <html>
    <body>

    <ul>
      <li><a href="second.html">modify/find</a></li> //this select which html 
      <li><a href="main.html">save/store</a></li>
    </ul>  

    </body>

这是我的导航代码,主要是接收输入的地方,其次是我希望显示的地方。

    <form>
    <label for="save">Please enter where you saved file</label>
      <input type="text" id="save" save="save"><br><br>
    <label for="name">Please enter what you named your file</label>
      <input type="text" id="name" save="name"><br><br>
    <input type="submit" value="Submit">
    </form>

这是我非常了解HTML的输入代码,非常需要帮助,非常感谢。