转载出自:http://www.w3cschool.cn/html/html-css-format.html
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!--abbr 一段文字的缩写,使用 title 属性来提供缩写代表的扩展文本-->
<abbr title="Framework Class Library">FCL</abbr>
<!--address 地址 联系信息等 -->
<address>浦东新区春晓路439号</address>
<!--b 强调,约定样式 b {font-weight:bolder;}-->
$<b>399</b><br />
<!--strong 标记重要的文本,约定样式同b-->
<strong>Warning:</strong><br />
<!--em 更有力的强调,约定样式为斜体-->
$<em>199</em><br />
<!--i 约定样式和em一样,表示文本具有与周围内容不同的性质,例如,来自其他语言的词语,技术或科学术语。-->
<i>Javascript</i>.<br />
<!--bdo 文本内容的方向性,不设置dir默认从左向右。rtl 文本从左到左-->
<bdo>This is a test</bdo><br />
<bdo dir="rtl">This is a test</bdo><br />
<!--cite 约定样式cite {font-style:italic; } -->
<cite>CSS</cite><br />
<!--code 约定样式{font-family:monospace;}-->
<code>HTML</code><br />
<!--del 删除,cite标识为什么删除 datetime标识删除的时间-->
$<del cite="双十一折扣" datetime="2016-11-10 23:00:00">599</del><b>399</b><br />
<!--ins 新增,cite标识为什么新增 datetime标识新增的时间-->
<ins>I like .</ins><br />
<!--s 标记文本不在正确或过时的-->
<s>HTML4</s> <br />
<!--u 通过下划线标记文本-->
<u>HTML5</u><br />
<!--mark 突出显示文本-->
<mark>HTML</mark><br />
<!--small 元素标记精细打印和经常用于免责声明和澄清。-->
<small>good</small>.<br />
<!--sub 下标-->
<sub>10</sub> is the <br />
<!--sup 上标-->
10<sup>2</sup><br />
<!--time 表示时间或日期-->
<time>2016-11-11</time><br />
</body>
</html>