HTML高级文字格式
2019-02-24 本文已影响0人
MajorDong
目标 :学习如何使用不太知名的HTML元素来来标记高级语言特征
描述列表
第三种类型的列表—描述列表(description list)。这种列表的目的是标记一组项目及其相关描述,例如术语和定义,或者是问题和答案等。
描述列表使用与其他列表类型不同的闭合标签— <dl>
; 此外,每一项都用 <dt>
(description term) 元素闭合。每个描述都用 <dd>
(description description) 元素闭合。
<dl>
<dt>soliloquy</dt>
<dd>In drama, where a character speaks to themselves, representing their inner thoughts or feelings and in the process relaying them to the audience (but not to other characters.)</dd>
<dt>monologue</dt>
<dd>In drama, where a character speaks their thoughts out loud to share them with the audience and any other characters present.</dd>
<dt>aside</dt>
<dd>In drama, where a character shares a comment only with the audience for humorous or dramatic effect. This is usually a feeling, thought or piece of additional background information.</dd>
</dl>
请注意:一个术语<dt>
可以同时有多个描述<dd>
引用
展示计算机代码
标记时间和日期
缩略语
另一个你在web上看到的相当常见的元素是<abbr>
——它常被用来包裹一个缩略语或缩写,并且提供缩写的解释(包含在title
属性中)。
<p>We use <abbr title="Hypertext Markup Language">HTML</abbr> to structure our web documents.</p>
<p>I think <abbr title="Reverend">Rev.</abbr> Green did it in the kitchen with the chainsaw.</p>
标记联系方式
<addresss>
<p></p>
</address>
上标和下标
当你使用日期、化学方程式、和数学方程式时会偶尔使用上标和下标。 <sup>
和<sub>
元素可以解决这样的问题。
<p>My birthday is on the 25<sup>th</sup> of May 2001.</p>
<p>Caffeine's chemical formula is C<sub>8</sub>H<sub>10</sub>N<sub>4</sub>O<sub>2</sub>.</p>
<p>If x<sup>2</sup> is 9, x must equal 3 or -3.</p>