<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>form中的lable标签</title>
</head>
<body>
<form>
<lable>你对什么感兴趣?</lable><br/>
<lable for="run">慢跑</lable>
<input type="checkbox" name="yundong1" id="run" /><br/>
<lable for="shan">登山</lable>
<input type="checkbox" name="yundong2" id="shan" /><br/>
<lable for="bb">篮球</lable>
<input type="checkbox" name="yundong3" id="bb" /><br/>
</form>
</body>
</html>