<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<!--

表格;
横向合并td colspan <td colspann="2" align="rignt"></td>
纵向合并td rowspan <td rowspan="2" align="rignt"></td>


表单;
actino 搜索路径
method 提交传输方式 POST 保密提交
get 路径后用&符号连接显示传输
input 类型

通用类型type;
text 输入框
password 密码
radio 单选
checkbox 多选
reset 重置
file 上传文件

按钮:
button submit 提交表单

不通用类型
select 下拉框 里面只能option 开头

textarea 无限 输入框
<textarea name="" id="" cols="初始长度值" rows="初始宽度">
checked 默认




-->
</head>

<body>
<form action="" method="post">
帐号:<input type="text"><br/>
密码:<input type="text"><br/>
生日:<input type="date" name="bir"><br>
性别:<input type="radio" checked name="sex" value="man">男&nbsp;<input type="radio" name="sex" value="moman">女<br/>
兴趣:<input type="checkbox" value="zq">足球&nbsp;<input type="checkbox" value="ymq">羽毛球&nbsp;<br>
爱好;<input type="checkbox" value="dy">钓鱼&nbsp;<input type="checkbox" value="sy">摄影&nbsp;<input type="checkbox" value="yy">游泳&nbsp;<br>
民族:<select name="" checked>
<option value="">汉族</option>
<option value="">壮族</option>
<option value="">藏族</option>
<option value="">满族</option>
</select>
<br>
个人意见:<textarea name="" id="" cols="30" rows="10"></textarea><br>
上传文件:<input type="file"><br>
<button>提交</button>&nbsp;
<input type="submit" value="sub提交">&nbsp;
<input type="reset" value="重置">
<!--
iframe标签:把一个网页嵌入到当前页面框内
<iframe src="" frameborder="0"></iframe>
&lt;左<
&gt;右>
&nbsp; 空格
音视频标签: video 音频标签:audio
autoplay;音频加载完成直接播放
controls;显示播放按钮
loop;循环播放
<video> 视频加入
<audio> 声音加入




-->

<video src="e2594ccc01ce5f87276c8f0b9555d301.mp4" controls loop
autoplay="autoplay"></video>
<table border="1" cellpadding="0" cellspacing="0">
<tr height="500px">
<td width="200px">
<a href="http://www.baidu.com" target="aswq">百度</a>
<a href="Untitled-1.html" target="aswq">跳转我的页面</a>

</td>
<td width="800px">
<iframe src="http://www.baidu.com" name="aswq" frameborder="0" width="100%" height="100%"></iframe>
</td>
</tr>
</table>


</form>

</body>
</html>