Is there a way to efficiently incorporate Font Awesome 5.5 SVG icons into Bootstrap 4?
I am looking to use Font Awesome icons within Bootstrap 4. What is the most effective method to achieve this? I have already downloaded the svg files and can display them as regular images, but is this the correct approach?
<div class="form-group">
<label for="name">Name</label>
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text"><img src="img/svgs/regular/address-book.svg" width="20px" height="20px" alt="Name"></div>
</div>
<input type="text" class="form-control" id="name" name="Name" placeholder="" value="" autofocus>
</div>
</div>