






















<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form method="post" action="http://127.0.0.1">
<p>普通输入框</p>
<p><input type="text" /></p>
<p>密码框</p>
<p><input type="password"/></p>
<p>按钮框</p>
<p><input type="submit"></p>
<p>复选框</p>
<input type="checkbox"/>
<input type="checkbox"/>
<input type="checkbox"/>
<p>单选框</p>
<input type="radio" />
<input type="radio" />
<input type="radio" />
<p>文件选择框</p>
<input type="file" />
<p>按钮</p>
<input type="button" />
</form>
<button type="submit">
click it
</button>
<p>下拉菜单</p>
<select >
<option>small</option>
<option>medium</option>
<option>large</option>
</select>
<p>多行文本输入框</p>
<textarea name="node" row="60" cols="40">
</textarea>
<p>Label标签</p>
<label>name:</label>
<input type="text" />
</body>
</html>