Have a look at the following code for a chapter title.
HTML code
Code:
<h2>Chapter One</h2>
CSS code
Code:
h2 {
font-size; large;
margin-top: 1em;
margin-bottom: 1em;
text-align: center;
text-indent: 0;
font-weight: bold;
}
That defines a chapter header of
Chapter One that's bold, center, font size is large, and has a 1em space between the top and bottom of the chapter title.
See how simple it is?