Suppose, In database, I have a table where column name is title & description.
In the title column, I stored data as "Welcome To Our Ecommerce Shop"
Now, I want to display that in frontend like this
<p> Welcome to Welcome To Our Ecommerce </p>
<h1> Shop </h1>
In the description column, I stored data as "Description is the pattern of narrative development that aims to make vivid a place, object, character, or group.Description is one of four rhetorical modes, along with exposition, argumentation, and narration. In practice"
Now, I want to display that in frontend like this
<p> Description is the pattern of narrative development that aims to make vivid a place, object, character, or group</p>
<h1> Description is one of four rhetorical modes, along with exposition, argumentation, and narration. In practice</h1>
How can I divide a string & display them in my desired design format?