FWIW, I would also add that you should move all of that inline styling into a css file. It will vastly improve the readability while you are editing...make the file much smaller - improving the ease of reader rendering... and make it easier for you to find errors.
Lines should look something like this:
<p>Отсутствие контрацептивных мер</p>
css:
p {font-family: Arial, sans-serif}
Cheers,
|