Let's say I have the following text containing two sentences.
<p>This is my first sentence. This is my second sentence that should be on the next line.</p>
Instead of having only the end of the sentence wrap on smaller screen sizes, I need to maintain the whole second sentence by breaking to the next line. Is this possible to do in just HTML & CSS?
This is my first sentence.br This is my second sentence that should be on the next line.
place br in tags <>
for reference
https://www.w3schools.com/tags/tag_br.asp#:~:text=The%20tag%20inserts%20a%20single%20line%20break.