我的代码哪里有问题吗。点击请输入密码不能实现光标效果
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>label</title>
</head>
<body>
<form>
<label for="name" >请输入用户名:</label>
<input type="text" id="name" placeholder="请输入用户名" >
<br />
<label for =“possword”>请输入密码:</label>
<input type=“possword” id=“password” placeholder="请输入密码">
</form>
</body>
</html>