qiaoliang0302

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

html表单

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>表单</title>
</head>
<body>
  <h3>用户注册</h3>
  <form action="http://www.chuanzhi.com" method="post">
    <!--http://www.chuanzhi.com/?username=324&gender=1&like=shopping&like=sleep&info=4231412&site=0-->
  	<div>
  		<label>用户名</label>
  		<input type="text" name="username" id="username"> 
  	</div>
  	<br />
  	<div>
  		<label>密码</label>
  		<input type="password" name="pwd" id="pwd">
  	</div>
  	<br />
  	<div>
  		<label>性别</label>
  		<input type="radio" name="gender" id="male" value="0"><label for="male">男</label>
  		<input type="radio" name="gender" id="female" value="1"><label for="female">女</label>
  	</div>
  	<br />
  	<div>
  		<label>爱好</label>
  		<input type="checkbox" name="like" value="sing">唱歌
  		<input type="checkbox" name="like" value="shopping">逛街
  		<input type="checkbox" name="like" value="sleep">睡觉
  	</div>
  	<br />
  	<div>
  		<label>照片</label>
  		<input type="file" name="">
  	</div>
  	<br />
  	<div>
  		<label>个人描述:</label>
  		<textarea name="info"></textarea>
  	</div>
  	<br />
  	<div>
  		<label>籍贯</label>
  		<select name="site">
  			<option value="0">北京</option>
  			<option value="1">上海</option>
  			<option value="2">广州</option>
  			<option value="3">深圳</option>
  		</select>
  	</div>
    <br />
  	<input type="submit" name="" value="提交">
  	<input type="reset" name="" value="重置">
  	<input type="button" name="" value="按钮">
  	<input type="image" name="" src="images/2.jpg">
  	<input type="hidden" name="hid" value="10000">
  </form>
</body>
</html>

  

内墙框架

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>内嵌框架</title>
</head>
<body>
  <a href="http://www.baidu.com" target="myframe">百度网</a>
  <a href="http://www.qq.com" target="myframe">腾讯网</a>
  <a href="http://www.sohu.com" target="myframe">搜狐网</a>
  <br />
	<iframe src="http://www.baidu.com" width=900 height=500 frameborder="0" scrolling="no" name="myframe"></iframe>
	<iframe src="009列表.html" width=900 height=500 frameborder="0" scrolling="no"></iframe>
</body>
</html>

  

posted on 2020-03-26 10:29  qiaoliang0302  阅读(117)  评论(0编辑  收藏  举报