Quote:
Originally Posted by RootlessAgrarian
You mean this line 13?
ummm, what part of <h1>blah blah blah blah</h1> is unclosed?
I have a feeling I'm going to feel insanely stupid when I finally realise what it is I'm looking at and not seeing.
|
yep, i mean that line 13, with a tiny difference. i just unzipped your file, and i see :
Code:
<H1>Section One: Before Civilization</h1>
notice that the opening tag has a capital H while the closing tag has a lower case h. that may be the source of your troubles.
i see also that you've got a LOT of extraneous code in there (i didn't go far, but in the first paragraph alone i see a few tags that are unnecessary, like when you have this sort of series :
<p class="calibre2">< i class="calibre3" >Neandertals did not paint their caves with the images of animals. But perhaps they had no
< / i > < i class="calibre3" > [...]
(example of unnecessary tags in bold, and since the entire pagraph is in italic you could just have one class on the p tag). those are not drastic problems but they certainly do muck up the code and can make it harder to find the real problems.
also, i see you downloaded the tool and used it locally ; i recommend you use the online tool, first because i think there is a more recent version than the one you downloaded (1.5 ? not sure), second because the explanations could be helpful for you.
edit : also, i and b tags are deprecated, and should be remplaced by em and strong. not critical for your problem but nonetheless might be worth keeping in mind...