in reply to Re: Re: My favorite HTML font style tag is...
in thread My favorite HTML font style tag is...
Though I can see the use of the construct in some cases, just applying <div> and <span> anywhere you want a layout change is bad practice.
For instance, this:
<p> <span class="bold">Some header</span><br> Some paragraph. </p>
Is much better written:
<h3>Some header</h3> <p> Some paragraph. </p>
- Don't laugh too hard at the above example, I've seen plenty of this in real sites made by supposedly professional companies.
Joost.
-- #!/usr/bin/perl -w use strict;$;= ";Jtunsitr pa;ngo;t1h\$e;r. )p.e(r;ls ;h;a;c.k^e;rs ";$_=$;;do{$..=chop}while(chop);$_=$;;eval$.;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: My favorite HTML font style tag is...
by cLive ;-) (Prior) on Aug 19, 2003 at 19:46 UTC | |
Re: Re: Re: Re: My favorite HTML font style tag is...
by Chady (Priest) on Aug 21, 2003 at 11:07 UTC | |
by BUU (Prior) on Aug 22, 2003 at 03:42 UTC | |
by Chady (Priest) on Aug 22, 2003 at 06:03 UTC |