xxxxxxxxxx
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 label标签的使用(大卫编程网 div.cn)</title>
</head>
<body>
<h1>label使用</h1>
<form action="demo-form.php">
<label for="company">公司: </label>
<input type="text" name="company" id="company"><br>
<label for="address">地址: </label>
<input type="text" name="address" id="address"><br>
<input type="submit" value="提交">
</form>
</body>
</html>