求大神看下这段代码写得是否正确,谢谢!
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>form中的lable标签</title> </head> <body> <form> 你对什么运动感兴趣: <br/> <label for="running">慢跑</label> <input type="checkbox" name="sport" id="running" /> <br /> <label for="climbing">登山</label> <input type="checkbox" name="sport" id="climbing" /> <br /> <label for="basketball">篮球</label> <input type="checkbox" name="sport" id="basketball" / > </form> </body> </html>