<divclass="container"> <h1>高亮文本</h1> <p>使用 mark 元素来 <mark>高亮</mark> 文本。</p> </div>
<abbr>
1 2 3 4 5
<divclass="container"> <h1>Abbreviations</h1> <p>The abbr element is used to mark up an abbreviation or acronym:</p> <p>The <abbrtitle="World Health Organization">WHO</abbr> was founded in 1948.</p> </div>
<blockquote>
1 2 3 4 5 6 7 8
<divclass="container"> <h1>Blockquotes</h1> <p>The blockquote element is used to present content from another source:</p> <blockquoteclass="blockquote"> <p>For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.</p> <footerclass="blockquote-footer">From WWF's website</footer> </blockquote> </div>
<dl>
1 2 3 4 5 6 7 8 9 10
<divclass="container"> <h1>Description Lists</h1> <p>The dl element indicates a description list:</p> <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> </div>
<divclass="container"> <h1>Keyboard Inputs</h1> <p>To indicate input that is typically entered via the keyboard, use the kbd element:</p> <p>Use <kbd>ctrl + p</kbd> to open the Print dialog box.</p> </div>
<pre>
1 2 3 4 5 6 7 8 9 10 11
<divclass="container"> <h1>Multiple Code Lines</h1> <p>For multiple lines of code, use the pre element:</p> <pre> Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks. </pre> </div>