HTML and CSS Reference
In-Depth Information
Similar to the <abbr> tag, <acronym> designates a word formed by
combining the initial letters of several words, as in the following
example:
<acronym>
<p> Jonathan learned his great problem-handling skills
from <acronym> STEPS </acronym> (Simply Tackle Each Problem
Seriously) </p>
Only the <abbr> tag made it into HTML5; <acronym> has been removed due to redun-
dancy. You may still see it used but you should use the <abbr> tag instead. The following
code snippets demonstrate each of the logical style tags, and Figure 7.1 illustrates how
all the tags display.
Input
<p> The anteater is the <em> strangest </em> looking animal, isn't it? </p>
<p> Take a <strong> left turn </strong> at <strong> Dee's Hop Stop
</strong></p>
<p><code> #include “trans.h” </code></p>
<p> The URL for that page is <samp> http://www.cern.ch/ </samp></p>
<p> Type the following command: <kbd> find . -name “prune” -print </kbd></p>
<p><code> chown </code><var> your_name the_file </var></p>
<p> Styles that are named after how they are used are called <dfn> logical
styles </dfn></p>
<p> Eggplant has been known to cause nausea in some
people <cite> (Lemay, 1994) </cite></p>
<p> Use the standard two-letter state abbreviation (such as
<abbr> CA </abbr> for California) </p>
<p> Jonathan learned his great problem-handling skills from
<acronym> STEPS </acronym> (Simply Tackle Each Problem Seriously) </p>
 
Search WWH ::




Custom Search