I have successfully implemented a Bootstrap 4.3 spinner on my website, but I am encountering an issue where I want to add additional text below the spinner. Here is the HTML code I am using:
<div class="d-flex justify-content-center">
<div class="row">
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div class="row">
<strong>Collecting data</strong>
</div>
</div>
Unfortunately, the text "Collecting data" is appearing inside the spinner itself. How can I resolve this issue?