I am attempting to show the text alongside the icon:
Here is the icon:
https://i.sstatic.net/Ir7Kl.png
When I position the text next to the icon, the first line that reads "testing: is simple dummy...." ends up in the middle of the icon, while the following line saying "an unknown printer...." appears below the icon. I desire for the second line to be positioned underneath the first line. Please refer to the image below:
https://i.sstatic.net/Tx9VJ.png
This is how my code appears:
<div class="row" style="display:flex;">
<div class="col">
<img src=" https://i.sstatic.net/Ir7Kl.png" height="50px" width="50px" />
<span style="font-size:20px;font-weight:bold">Testing:</span> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.<br />
</div>
</div>
I also attempted to write the code like this:
<div class="row" style="display:flex;">
<div class="col-auto">
<img src="https://i.sstatic.net/Ir7Kl.png" height="50px" width="50px" />
</div>
<div class="col-auto">
<span style="font-size:20px;font-weight:bold">Test test1:</span> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.<br />
</div>
</div>
The above code did not yield the desired result. With this code, the entire text appeared underneath the image.
https://i.sstatic.net/rVH1E.png
I wish for the text to appear right next to the image rather than below it.