我这样写为啥不会放在表格里?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>input-placeholder</title>
</head>
<body>
<table>
<tr>
<td>
NAME:
<input type="text" placeholder="fuck" />
</td>
</tr>
<tr>
<td>
PW:
<input type="password" placeholder="inputyourps" />
</td>
</tr>
</table>
</body>
</html>