I am using this file to implement icons on my input button
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<input type=button class="submitter" onClick="location.href='../test.htm'" value=" Pre-payment"/>
my Css file includes the following code
input[type="button"] {
font-family: FontAwesome;
}
The problem is I want input button value to be of the font that is consistent with my site. Right not the words "Pre-payment" on my button are taking up fonts from font awesome . If I remove font awesome and add my own font family the icon does not appear.
Any suggestions/ Ideas?
I tried to download the font awesome css file and modify it manually from whatever site it is on, but I can't find a copy of it.