form

<!doctype html>
<html>
	<head>
		<title>form</title>
		<meta charset="utf-8" />
	</head>
	<body>
		<form action="">
			<select>
				<option value="select">select</option>
				<option value="option" selected>option</option>
				<option value="value">value</value>
			</select>
			text<input type="text" name="text">
			password<input type="password" name="password">
			radio<input type="radio" name="">radio2<input type="radio">
			checkbox<input type="checkbox">checkbox2<input type="checkbox">
			reset<input type="reset">
			submit<input type="submit">
		</form>
	</body>
</html>
原文地址:https://www.cnblogs.com/dreamtosky/p/13416784.html