I'm currently delving into the world of bootstrap and I'm curious about how to incorporate a progress bar into a card layout to enhance my design skills. I experimented with inline-block and inline display properties, but they didn't yield the desired result. Eventually, I resorted to using flexbox, although the outcome still seems somewhat off. Here is a snapshot of my progress so far. https://i.sstatic.net/FTkXT.png
Below is the snippet of HTML code:
<div class="card-header">Languages</div>
<div class="card-body text-dark">
<h4 class="card-text">
<div class="d-flex">Korean:
<div class="progress-bar bg-light" style="width:100%"></div>
</div>
<div class="d-flex">English:
<div class="progress-bar bg-dark" style="width:90%"></div>
</div>
<div class="d-flex">Chinese:
<div class="progress-bar bg-dark" style="width:85%"></div>
</div>
</h4>
</div>