1.内容列表元素
有序列表,无序列表,自定义列表
无序列表<ul><li></li></ul>
有序列表<ol><li</li>></ol> 可以加start="" 在ol里面加
自定义列表<dl><dt><dd></dd></dt></dl>
列表嵌套 列表里面还可以添加列表
内容格式化
<pre></pre>可以把想弄出想展示的格式
<p></p>段落与段落的分割线
<blockquote></blockquote>引用其他地方的
<div></div>没有特别的语义,去做布局排版
2.内容嵌套元素
插入图片<img src="">
<img src="" alt=“”>alt 如果图片不存在会显示alt内容
<img src="" width="" hight="">更改图片大小像素
<a herf=""><img src=""></a>
插入网页标签
<iframe src=""></iframe>
<iframe src="" width="" height="" ></iframe>
<iframe src="" width="" height="" frameborder="0" allowfullscreen=""></iframe>
3.插入一个资源地址
<embed src="" width="" height="" type="插件类型比如flash"></embed>
4.插入图片映射区域
<img src="" width="" hight="" usemap="#chinamap">
<map name="chinamap"></map>
<area shape="circle" coords="0,0,222" herf="" ></area>
shape=rect (x,y,x,y)
多边形 polygon (x,y,x,y,x......)
5.插入视频
视频封装格式也就是视频容器
AVI:可用MPEG-2, DIVX, XVID, WMV3, WMV4, WMV9, H.264
WMV:可用WMV3, WMV4, WMV9
RM/RMVB:可用RV40, RV50, RV60, RM8, RM9, RM10
MOV:可用MPEG-2, MPEG4-ASP(XVID), H.264
MKV:可用所有视频编码方案
视频编解码
MPEG-2
MPEG-4 Simple Profile
H.264/AVC
AVS
VC-1
视频元素
<video> src="" width="" height="" ></video>
contorls="contorls" 载入控件
autoplay="true" 自动播放
loop="true" 反复播放
muted=""视频处于一个静音状态
poster=""视频播放插入的一个图片
preload 设置后,预先载入视频
auto 当前页面加载后载入zhenggeshipin
meta 载入元数据
none 不载入视频
load 事先加载全部内容
<video controls="controls">
<source src="">
<source src="">
<source src="">
</video>
可以多用几个格式 防止格式解析不了出错
音频跟视频差不多
不过标签是<audio></audio>
表格元素
<table style="width:" style="backgroup:">列操作也能达到效果</table>
border="" 建议不用 后期用css
<table>
<tr>
<td>
<td>
<tr>
<tr>
<td>
<td>
<tr>
<tr>
<td>
<td>
<tr>
</table>
<cosplan>合并水平单元格
<td cosplan="几个单元格填几">内容</td>
<rowspan>
标准化单元格
<caption>内容</caption> 加入标题
<thead>内容</thead> 表头无论放在哪都是第一行
<tbody></tbody> 指明数据部分
<tfoot></tfoot>放在最后一行
列操作也可以
<col group>
<col style="backgroup:">
</col group>
注释与元数据以及全局属性
<!---->
元数据 不备注
全局属性(常用的)
class 规定元素的一个或多个类名(引用样式表中的类)
id 规定元素的唯一 id。
style 规定元素的行内 CSS 样式。
title 规定有关元素的额外信息。
表单元素
<from></from>
<from name=""></from> 名字
<from name="" method="get,post"></from>提交方式
<from name="" method="get,post" target ="blank"></from>新打开网页
<from name="" method="get,post" target ="blank" enctype=""></from>
编码方式默认的就好
<from name="" method="get,post" action=""></from>
提交地址<from>
<input type="test" name="username" value="">
<input type="test" name="usepassword" value="">
<input type="sumbit" name="登陆" value="dossumbit">
</from>
<input></input>标签
name定义名字标签
value 定义控件初始值
size空间长度 能显示的最大字符
maxlength 允许用户输入的最大字符
type
1. 提交,重置,普通按钮
sumbit reset button
2.普通文本框,密码框
test password
3.单选框和复选框
radio checkbox
4.隐藏框
hidden
<textarea></textarea> 多行文本框
rows 行 cols 列
select菜单下拉
multlple 进度条
fieldest ,legend 表单分组,组合