⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 search.html

📁 用jsp语言自己做的一个网站bookshot的全套程序以及一些样例。完全属于原创。
💻 HTML
字号:
<html>
  <head>
    <title>Search in Employee Database</title>
  </head>
  <body bgcolor="white">

    Please enter information about the employee you're looking for.
    You can use partial information in all fields.

    <form action="find.jsp" method="get">
      <table>
          <td>First Name:</td>
          <td><input type="text" name="firstName">
          </td>
        </tr>
        <tr>
          <td>Last Name:</td>
          <td><input type="text" name="lastName">
          </td>
        </tr>
        <tr>
          <td>Department:</td>
          <td><input type="text" name="dept">
          </td>
        </tr>
        <tr>
          <td colspan=2><input type="submit" value="Search"></td>
        </tr>
      </table>
    </form>

  </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -