Plain HTML stream?
What is apparently wrong with a normal HTML stream? If your lines are too long and want to make them shorter, you can always define the width of your H1 in CSS so that you don't add markup for your design. The markup should be semantic, and CSS should provide the necessary appearance. Therefore, you can add a width to your H1 element and make it break the line according to the set width.
h1 { width: 40em; }
Also consider font size related sizes to get better results (not too narrow, not too wide) when using different sizes of text on different pages.
When is <br/> excellent?
Whenever you really need to break your headline into a new line, of course, it's correct to use <br/> . Do not be afraid to use it if necessary in your heading. But for the purpose of overflowing partitions, chapters are not used.
Robert Koritnik
source share