Quote:
But then I saw there was no space between chapter title and text so I put them back, I have my space and it looks great. But would the br still work without /h1? Or does the /h1 need to stay in?
|
br is the break command to make a new line as you discovered. Properly for xhtml (epub) it should be <br /> to indicate that it both opens and closed the break tag.
The /h1 is the closing tag for the title. It begins with <h1> and ends with </h1>. This is the proper way to define an h1 tag in xhtml. It is not proper to leave out the closing part of the tag although some reading tools may let you get away with it. It won't pass any of the checks. Glad it is all working.
Dale