Quote:
Originally Posted by JSWolf
Besides, in CSS you can change the default font size of the H tags to whatever you want.
|
Yes!
On my websites, I use tags all the way from H1 to H5. In my books, from H2 to H4. (It's not just font size, either; I use centered and flush left, italics and roman.) For the books:
h2 {
margin-top:1em;
font-size: 150%;
text-indent: 0em;
font-style: italic;
text-align:center;
}
h3 {
margin-top:1em;
font-size: 125%;
text-indent: 0em;
text-align:center;
}
h4 {
margin-top:1em;
font-size: 125%;
text-indent: 0em;
text-align:left;
}
Those being the chapter heads, major section breaks, and breakheads. (I am sure that most of you can guess why there is no H1: it originally was for the book title.)