Summary of HTML Lyrics files
.html or .htm files are simply text files that contain tags to format the document. They involve a lot of typing because you have to type in the formatting tags as well as the actual lyrics. It is highly recommended that you find a lyrics file close to what you need for your song(s), download it and just modify the lyrics text before you tackle a file where you do your own coding. With that in mind, perhaps the following short summary will be enough to keep you out of trouble.
It's common to use the <p> (paragraph) tag but add classes
to them to change how they look ...the indent level, the color, italics, etc (eg, <p> class="lyrics2"> to format the lyrics for the 2nd Break). Most tags do not need an EndTag (eg,<p> ... doesn't need a </p> tag ... because subsequent paragraph tags are assumed to end the previous paragraph) but the <div> and <span> tags (to define a division or area of the document) and the <font> tag DO require EndTags (</div>, </span>, </font>) ... or else the formatting they provide will screw up the formatting of the tags that follow. If your formatting carries on past where you think it should end, an EndTag might be missing.