📄 search.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 + -