html简单页面

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我的第一个html页面</title>
</head>
<body>
用户名<input type="text"><br>
密码<input type="password"><br>
确认密码<input type="password"><br>
性别<input type="radio" name="sex">男</input>
<input type="radio" name="sex">女</input><br>
学历
<select>
<option>高中</option>
<option>大专</option>
<option>本科</option>
</select><br>
简介<textarea></textarea>
</body>
</html>

猜你喜欢

转载自www.cnblogs.com/god1/p/12111601.html