Hi,
I've got a little problem:
If I "forget" the </h1>-tag, html produces just a line break.
If I add the </h1> I get an empty line.
How to avoid this?
Example:
Code 1:
<h1>EXAMPLE<h2>More Text
Output 1:
EXAMPLE
More Text
Code 2:
<h1>EXAMPLE</h1><h2>More Text</h2>
Output 2:
EXAMPLE
More Text
Thanks for Your help!
Frank