<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!--form定义一个表单-->
<form action="" method="get">
搜索:<input type="search" placeholder="请输入搜索内容" /><br /><br />
上传:<input type="file" accept="image/gif" multiple="multiple" /><!--accept:设置类型multiple:设置可以多个-->
颜色选择: <input type="color" /><br /><br />
<input type="submit" /><!--type="submit"提交状态,点击即可提交 -->
<input type="reset" /><!--type="reset"重置按键 -->
</form>
</body>
</html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!--form定义一个表单-->
<form action="" method="get">
搜索:<input type="search" placeholder="请输入搜索内容" /><br /><br />
上传:<input type="file" accept="image/gif" multiple="multiple" /><!--accept:设置类型multiple:设置可以多个-->
颜色选择: <input type="color" /><br /><br />
<input type="submit" /><!--type="submit"提交状态,点击即可提交 -->
<input type="reset" /><!--type="reset"重置按键 -->
</form>
</body>
</html>