网页基础(二十七)Feildset

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Fieldset</title>
	</head>
	<body>
		<form action="#">
			<fieldset>
			<legend>用户登录</legend>	<!--分组标题-->
			
			姓名:<input type="text" name="userName" id="userName" />
			<br />
			密码:<input type="password" name="pwd" id="pwd" />
		
			</fieldset>
		</form>
	</body>
</html>

发布了33 篇原创文章 · 获赞 0 · 访问量 305

猜你喜欢

转载自blog.csdn.net/qq_41440413/article/details/104691958