Page is a not externally linkable
encyclo - 6:13 pm on Nov 30, 2004 (gmt 0)
However, that is not always a problem, so in those cases, using One other advantage of and with the CSS: As your date is not important, you don't want to use a hx heading, but if you used a
ProfMoriarty, there is some sense in making a "bold" class when you want to avoid hardcoding a particular style into the HTML, as whilst with CSS you could always do a b {font-weight:normal;} later, for non-CSS user agents, the bold will always show. <b></b> is a good idea rather than <span class="bold"></span>. <b> and <i> are that, because they are semantically meaningless, you can use them as replacements for <span> whilst still making that style distinction for non-CSS user agents. Here's a (rather poor) example: <h1>My title</h1>
<h2>My subtitle</h2>
<p>Date of publication: <b class="date">January 1st, 2005</b></p>b.date {
font-weight:normal;
color:red;
}<span>, it would remain indistinguishable from a normal paragraph in a non-CSS environment.