View Single Post
Old 06-12-2020, 12:14 PM   #34
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,563
Karma: 20150435
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by Sarmat89 View Post
The chapter headers are usually going like that:
ONE
[some fancy graphics]
It Begins
while in the ToC something like that is put:
Chapter one. It Begins
HTML hierarchic headers are useless here.
Ah... You mean that this is the wrong way of coding it:
Code:
<h2>ONE</h2>
<h3>[some fancy graphics]</h3>
<h4>It Begins</h4>
and with that, I agree. Those are not different level headings, those are different parts of the same heading. I hereby declare that the right way of coding™ it is (something similar to):
Code:
<h1><span class="number">ONE</span>
<span class="graphic">[some fancy graphics]</span>
It Begins</h1>
Yes, <h1>, because the chapter is probably the higher level. No, the book title in the title page is not the highest level, that's just presentational.


Last edited by Jellby; 06-12-2020 at 02:13 PM. Reason: typo
Jellby is offline   Reply With Quote