I'm trying to add some glyphicons to my web applications through bootstrap, but haven't used bootstrap before and I don't understand how I'm supposed to be doing this. There are a lot of confusing articles on how to do this, and I followed a few but haven't gotten any results. So far, I have added bootstrap into my project using NuGet.
I looked through my files and all the dependencies and references are there. However, when I run my project, the glyphicons still don't show up. I've posted the code below of the page where I want to show these glyphicons. Any idea on what more I have to do to get them to work?
@page
@model CustomerPageTest.Pages.Customer.ListModel
@{
ViewData["Title"] = "List";
}
<div>
<p align="right">
<a class="btn btn-dark"
asp-page="./AddCustomer">Add New Customer</a>
</p>
</div>
<form method="get">
<div class="form-group">
<div class="input-group">
<input type="search" class="form-control" asp-for="SearchTerm" />
<span class="btn btn-outline-dark">
<i class="glyphicon glyphicon-search"></i>
</span>
</div>
</div>
</form>
<table class="table">
@foreach(var customer in Model.Customers)
{
<tr>
<td>@customer.name</td>
<td>@customer.notes</td>
<td>
<a class="btn btn-outline-dark"
asp-page="/Assessment/AddAssessment" asp-route-customerId ="@customer.customer_id">
<i class="glyphicon glyphicon-plus"></i>
</a>
</td>
</tr>
}
</table>