I am struggling to populate a list with Font Awesome icons 4.7.0 in my HTML code using Bootstrap. Strangely, only the first icon is displayed while the rest remain invisible.
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="input-group" style="margin-bottom:9%">
<div class="input-group-append" style="width: 40%;">
<select class="form-control fa" name="selectableList">
<option class="fa fa-search" value="0"></option>
<option class="fa fa-equals" value="1"></option>
<option class="fa fa-not-equal" value="2"></option>
<option class="fa fa-spell-check" value="3"></option>
<option class="fa fa-remove-format" value="4"></option>
</select>
</div>
<input class="form-control" type="text" name="textInput" />
</div>
https://jsfiddle.net/eliasvargasloyola/a76Lzu51/4/
Any insights on why only the first icon is visible and the others are not showing?
Best regards.