label 包含文本,与某个form 控件挂钩,使得屏幕阅读器了解这个控件是要填写什么信息

<form>
  <label for="name">Name:</label>
  <input type="text" id="name" name="name">
</form>