On this page
article
4.HTML 表单.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="#">
<label for="username">用户名:</label>
<input type="text" id="username" placeholder="请输入用户名"><br>
<label for="pwd" >密码:</label>
<input type="password" id="pwd" placeholder="请输入密码"><br><br>
<label>性别:</label>
<input type="radio" name="gender">男
<input type="radio" name="gender">女
<input type="radio" name="gender">其他<br><br>
<label>爱好</label>
<input type="checkbox" name="hobby">唱歌
<input type="checkbox" name="hobby">跳舞
<input type="checkbox" name="hobby">篮球
<input type="checkbox" name="hobby">打豆豆<br><br>
<input type="submit" value="上传">
</form>
</body>
</html>