m 元素表示文本被 “加上标志”,但是不一定要强调。可以把它想像成书中突出显示的一节。google 的缓存页面就是典型的用例。如果链接到一个缓存的副本,搜索词就被加上标志。例如,如果搜索 “egret”,那么缓存的 google 页面可能像下面这样:
the great <m>egret</m> (also known as the american <m>egret</m>) is a large white wading bird found worldwide. the great <m>egret</m> flies with slow wing beats. the scientific name of the great <m>egret</m> is <i>casmerodius albus</i>.
对于这个元素的名称当前还有争议。在规范发布之前,它可能从 m 改为 mark。
time
time 元素表示一个时间值,比如 5:35 p.m., est, april 23, 2007。例如:
<p>i am writing this example at <time>5:35 p.m. on april 23rd</time>. </p>
time 元素可以帮助浏览器和其他程序识别出 html 页面中的时间。它不要求对元素内容应用任何特定的格式。但是,每个 time 元素都应该有一个 datetime 属性,其中包含更适合机器识别的时间值,比如:
<p>i am writing this example at <time datetime="2007-04-23t17:35:00-05:00">5:35 p.m. on april 23rd</time>. </p>
适合机器读取的时间值可能对搜索引擎、日历程序等有帮助。
meter
meter 元素表示指定范围内的数字值。例如,可以用它表示薪水、投票给 le pen 的法国选民的百分比或考试分数。在这里,我使用 meter 标出 software development 2007 上一位 google 程序员提供的数据:
<p>an entry level programmer in silicon valley can expect to start around <meter>$90,000</meter> per year. </p>
meter 元素帮助浏览器和其他客户机识别 html 页面中的数量。它不要求对元素内容应用任何特定的格式。但是,每个 meter 元素可以有最多 6 个属性,它们按照更适合机器识别的形式表示这个数量: value min low high max optimum 这些属性都应该包含一个十进制数字。例如,期末考试的分数可以写成下面这样: