您的位置:首页 > Web前端 > HTML

HTML表单

2016-03-20 16:27 337 查看
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
<form>
账号:<input type="text" value=""/><br />

密码:<input type="password" value="" /><br />
备注<textarea cols="35" rows="5"></textarea><br />
<input type="submit" value="提交" /><br />
<input type="reset" value="重置" /><br />
<input type="button" value="登陆" /><br />
<input type="image" src="wallpaper_a211337.jpg" width="500" /><br />
<input type="radio"  name="sex"/>男<br />
<input type="radio"  name="sex"/>女<br />
<input type="checkbox"  checked="checked" disabled="disabled"/>可乐<br />
<input type="checkbox" />百事可乐<br />
<input type="checkbox" />崂山可乐<br />
<input type="file" /><br />
<select size="1">
<option value="">汉堡</option>
<option>鸡米花</option>
<option selected="selected">鸡腿</option>
</select>

</form>
</body>
</html>


View Code

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: