My task is to place two <h3>
tags in the same line or paragraph.
<h3>This is the first paragraph. </h3>
<h3>This is the second paragraph.</h3>
I would like the output to look like this:
This is the first paragraph. This is
Second paragraph
Essentially, the second tag should be a continuation of the first one. When my width is reached, it should move to the next line and start at the beginning like shown above.
I have come across examples on stack overflow similar to this:
This is the first paragraph. This is Second
paragraph.
However, I prefer not to use flex box or aligning techniques. I want all tags to be within a single paragraph.