Logical HTML Styles indicate the way text is used. For example Emphasis, Citation, Definition.
The following HTML tags are examples:
<em>
<strong>
<code>
-- fixed width (
Courier) font.
<var>
<dfn>
<cite>
<address>
HTML examples of the above
<em> This is emphasised </em>
which looks like this in HTML
This is emphasised
<strong> This is Strong This is </strong>
which looks like this in HTML
This is Strong This is
<code> begin for i:= 1 to N </code>
which looks like this in HTML
begin
for i:= 1 to N
<var> my_var_name = 2; </var>
which looks like this in HTML
my_var_name = 2;
<dfn> By definition this the dfn logical style </dfn>
which looks like this in HTML
dave@cs.cf.ac.uk Dr. A.D. Marshall
<cite> Internet Computing Notes, Marshall 1997 </cite>
which looks like this in HTML
dave@cs.cf.ac.uk Dr. A.D. Marshall
<address> dave@cs.cf.ac.uk Dr. A.D. Marshall </address>
which looks like this in HTML
dave@cs.cf.ac.uk Dr. A.D. Marshall