Entry:
Some Sample HTML Elements
Another document on my desktop, called blockquote.html, for some reason.
Source:
<h2>Some Sample HTML Elements</h2>
<h3>Block Elements</h3>
<h4>Blockquote</h4>
<blockquote cite="http://www.tombertalan.com/">
<p>A block-level quotation, for when the quotation includes block level elements, e.g. paragraphs. The <code>cite</code> attribute may give the source, and must be a fully qualified Uniform Resource Identifier.</p>
<p><del>The default presentation of block quotations in visual browsers is usually to indent them from both margins. This has led to the element being unnecessarily used just to indent paragraphs, regardless of semantics. For quotations not containing block level elements see the quote (q) element.</del></p>
</blockquote>
<h4>Definition List</h4>
<dl>
<dt>Dog</dt>
<dd>A medium-sized furry creature.</dd>
<dt>Cat</dt>
<dd>A small-sized furry creature.</dd>
</dl>
<h4>Menu List</h4>
<i>(deprecated)</i>
<menu>
<li>Item One</li>
<li>Item Two</li>
</menu>
<h4>Unordered List</h4>
<ul>
<li>Item One</li>
<li>Item Two</li>
</ul>
<h3>Inline Elements</h3>
<h4>Abbreviation</h4>
<abbr title="As Soon As Possible">ASAP</abbr>
<h4>Definition</h4>
<dfn title="A medium-sized furry creature.">Dog</dfn>
<h3>Computer Phrase Elements</h3>
<h4>Sample Output</h4>
<samp>Hello world.</samp>
<h4>Keyboard - text to be entered by the user</h4>
<kbd>What time is it?</kbd>
<h4>Variable</h4>
<var>$speed_of_light = array('really', 'fast');</var>
And Output:
Block Elements
Blockquote
A block-level quotation, for when the quotation includes block level elements, e.g. paragraphs. The
citeattribute may give the source, and must be a fully qualified Uniform Resource Identifier.
The default presentation of block quotations in visual browsers is usually to indent them from both margins. This has led to the element being unnecessarily used just to indent paragraphs, regardless of semantics. For quotations not containing block level elements see the quote (q) element.
Definition List
- Dog
- A medium-sized furry creature.
- Cat
- A small-sized furry creature.
Menu List
(deprecated)Unordered List
- Item One
- Item Two
