20. <ins> 定义被插入的文本
ins标签是成对出现的,以<ins>开始,</ins>结束
ins通常应连同del标签一同使用,表示被插入与被删除的文本
通过ins与del定义文档可以帮助了解文档内容的修改过程,利于多人编辑系统
使用ins定义的文本通常带有下划线
属性:
Common ― 一般属性
cite ― 引用网址,定义为何插入的引用网址
datetime ― 插入的时间与日期
title ― 定义插入的目的或提示
ins是inserted text的缩写,插入文本
ins标签示例:
<p>任鸟飞网页设计网址 <del title=”del url” cite=”http://www.renniaofei.com/”> http://www.renniaofei.com/ < /del> <ins>http://www.renniaofei.com/</ins> ,原先 <del>http://www.renniaofei.com/</del> 网址已经删除。 </p>
21. <kbd>标签表明使用者输入的文字
kbd标签是成对出现的,以<kbd>开始,以</kbd>结束
属性:
Common ― 一般属性
示例: To exit, type <kbd>QUIT</kbd>.
22. <map>定义图像点击区域的集合
map标签是成对出现的,以<map>开始,</map>结束
map标签必须配合area标签使用
map标签中name与id属性指定的值必须与定义图像点击区中图像(img)的usemap属性指定的值一致
属性
Common ― 一般属性
id ― 定义map的名称。
name ― 定义map的名称。
map是client-side image map的意思
map标签示例:
<img src=” ” usemap=”#Map” /> <map name=”Map” id=”Map”> <area shape=”rect” coords=”35,29,135,99″ href=”#” /> <area shape=”circle” coords=”243,78,44″ href=”#” /> <area shape=”poly” coords=”120,137,195,154,135,207″ href=”#” /> </map>
23. <menu> 定义菜单列表
不符合标准网页设计的理念,不赞成使用。
menu标签是成对出现的,以<menu>开始,</menu>结束
属性
Common ― 一般属性
menu:菜单
24. <noframes>对不支持框架的设备进行提示
noframes标签是成对出现的,以<noframes>开始,</noframes>结束
由于frameset内不能包含body标签,因此noframes内部必须包含body标签
示例
<frameset cols=”50%,25%,25%”> <frame src=”http://www.renniaofei.com/category/design/”> <frame src=”http://www.renniaofei.com/graphics/”> <frame src=”http://www.renniaofei.com/inspiration/”> <noframes> <body> < p>任鸟飞网页设计网使用了框架技术,但是您的浏览器不支持框架,请升级您的浏览器以便正常访问。</p> < /body> </noframes> </frameset>
25. <noscript>无法加载脚本时的提示文字
noscript标签是成对出现的,以<noscript>开始,以</noscript>结束
示例
<noscript>此页面无法加载js脚本代码。</noscript>
26. <q>
表示一个行引用
q标签是成对出现的,以<q>开始,以</q>结束。
属性:
Common ― 一般属性
cite ― 引用内容的URI
q是quoted text的缩写
示例:
<cite>古人</cite>云:<q>良言一句三冬暖,恶语伤人六月寒。</q>
27. <s>定义删除线的文字
不符合标准网页设计的理念,不赞成使用。
s标签是成对出现的,以<s>开始,以</s>结束
属性:
Common ― 一般属性
s是strikethrough的缩写
28. <sub>表示下标
sub标签是成对出现的,以<sub>开始。以</sub>结束
属性:
Common ― 一般属性
sub是subscript的缩写
29. <sup>表示上标
sup标签是成对出现的,以<sup>开始,以</sup>结束
属性:
Common ― 一般属性
sup是superscript的缩写 |
|