I am currently utilizing the open weather API to showcase weather data, however, I am facing difficulties in arranging the data in a format similar to the one shown below.
Example output:
I attempted to present the data in the following structure:
<div class='row'>
<div class='col-md-3'>
<p> Wednesday </p>
<p> ... </p>
</div>
<div class='col-md-3'>
<p> Thursday </p>
<p> ... </p>
</div>
</div>
However, the layout is appearing stacked on top of each other instead of side by side on mobile screens. How can I resolve this issue?