|
Posted by Toby A Inkster on 02/17/07 09:14
Jonathan N. Little wrote:
> http://www.littleworksstudio.com/temp/usenet/alt.html.20070216.php
This:
<h1><span>A</span>NSEL <span>A</span>DAMS</h1>
<h2><span>T</span>HE <span>P</span>HOTOCRAPHER OF THE <span>A</span>MERICAN <span>W</span>EST</h2>
Would be better as:
<h1>Ansel Adams</h1>
<h2>The Photographer of the American West</h2>
and the following CSS:
H1, H2 { font-variant: small-caps; }
Arguably though, "The Photographer of the American West" is part of the
main heading, in which case, you could even go to:
<h1>Ansel Adams<br>
<small>The Photographer of the American West</small></h1>
Also, you don't specify a font, leading to all text displaying in the
browser default font. I would suggest:
BODY { font-family: "Georgia", "Cochin", "Times New Roman", serif; }
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
Geek of ~ HTML/SQL/Perl/PHP/Python*/Apache/Linux
* = I'm getting there!
Navigation:
[Reply to this message]
|