Im working on a project using ng-bootstrap and Angular 9. The client requested credit card images next to the options in a dropdown select list. Needs to work in multiple browsers. The code below is from my form.component.html file. Any and all recommended solutions are welcome.
<form>
<label>Card Type: </label>
<select class="form-control">
<option>Visa</option>
<option>MasterCard</option>
<option>American Express</option>
</select>
</form>