2.5其他表单

42 阅读1分钟
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
</head>
<body>
	<!-- action提交到服务器地址 method get post delete put patch  -->
	<form action="xxx.php" enctype="application/x-www-form-urlencoded" method="get">
		<!-- 多行文本框 -->
		描述:<textarea name="description"  cols="30" rows="10"></textarea>
		附件上传:
		上传文件:<input type="file">
		<fieldset>
			<legend>请登录</legend>
			用户名:<input type="text" name="" id=""><br>
			密码:<input type="password" name="" id="">
		</fieldset>
	</form>
</body>
</html>