HTML-25:表单元素练习

<!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>
    用户名:<input type="text" value="阁下请输入" maxlength="3"><br>
    &nbsp;&nbsp; 密码:<input type="password" value="阁下请输入" maxlength="3"><br>
    羽神的性别:未婚<input type="checkbox">离异<input type="checkbox">丧偶<input type="checkbox"><br>
    羽神的年龄:17 <input type="radio" name="1">20<input type="radio" name="1">25<input type="radio" name="1" checked>
</body>

</html>

猜你喜欢

转载自blog.csdn.net/chuan0106/article/details/125541968