#e# 18. <dt>代表HTML自定义列表组
20. <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>标签表明使用者输入的文字
22. <map>定义图像点击区域的集合
<img src=”http://www.renniaofei.com/images/logo.png” 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> 定义菜单列表
<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>此页面无法加载js脚本代码。</noscript> 26. <q> 表示一个行引用
<cite>古人</cite>云:<q>良言一句三冬暖,恶语伤人六月寒。</q> 27. <s>定义删除线的文字
浏览器显示表格时,通常是完全下载表格后,再全部显示,所以当表格很长时,可以使用tbody分段显示。 31. <tfoot>表示HTML表脚 表格的表脚tfoot,可以使用单独的样式定义表脚,并且在打印时可以在分页的下部打印表脚。 32. <th>代表HTML表格中的表头
<table width=”80%” border=”1〃> <tr> < th>www.renniaofei.com</th> < th>.com域名的数量</th> <th>.cn域名的数量</th> < th>.net域名的数量</th> </tr> <tr> < th>2003年</th> <td>1000</td> < td>2000</td> <td>3000</td> </tr> < tr> <th>2004年</th> <td>4000</td> <td>5000</td> <td>6000</td> </tr> < tr> <th>2005年</th> <td>7000</td> <td>8000</td> <td>9000</td> </tr> < /table> 33. <thead>表示HTML表头 表格的头部thead,可以使用单独的样式定义表头,并且在打印时可以在分页的上部打印表头 34. l 标签 — 表示一段语句
35. <Code>代码标签 code标签是成对出现的,以<code>开始,以</code>结束,常用于显示源代码。 36. <fieldset> 窗体分组 如果一个页面的窗体项太多,我们最好把它们分组显示,就像使用p标签分开段落一样,可以使用fieldset与legend标签对窗体内容分组。
<fieldset> <legend>我最喜爱的:</legend> <label for=”computer”>计算器</label> <input type=”checkbox” value=”1〃 id=”fav” name=”fav” /> <label for=”trval”>旅游</label> <input type=”checkbox” value=”2〃 id=”fav” name=”fav” /> <label for=”buy”>购物</label> < input type=”checkbox” value=”3〃 id=”fav” name=”fav” /> < /fieldset> (责任编辑:熊猫蜀黍) |