表单样式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form name="f1" action="" method="get">
文本框标签:<input type="text" name="username"> </br>
密码框标签:<input type="password" name="pwd"> </br>
提交按钮标签:<input type="submit" value="sumbit"> </br>
单选框标签:<input type="radio"> </br>
复选框标签:<input type="checkbox"></br>
复选框标签:<input type="checkbox"></br>
按钮标签:<input type="button"></br>
重置按钮标签:<input type="reset"></br>
文件上传标签:<input type="file"></br>
多行文本标签:<textarea name="comment" rows="4" cols="50">你的评论...</textarea></br>
显示文本标签:<label>I have a bike</label></br>
下拉列表框:
<select id="id_name" name="name">
<!-- 下拉框选项-->
<option value="value1">Text1</option>
<option value="value2">Text2</option>
</select>
</form>
</body>
</html>