0

I am trying to load a font-awesome icon inside a vlue of an input field but do not succeed in it:

Code below gives me literally:<i class="fas fa-times"></i>

<input type="submit" class="sfmdelete"  name="delete" value="<i class='fas fa-times'></i>" />

How can i solve this issue?

Jack Maessen
  • 1,780
  • 4
  • 19
  • 51

1 Answers1

3

This will solve-- Add the following to your css. You can use font-awesome as regular font too.

input[type="submit"] {
    font-family: FontAwesome;
}

HTML

<input type="submit" class="search" value="&#xf002;" />

Link to the FontAwesome ascii code (cheatsheet): this

ellipsis
  • 12,049
  • 2
  • 17
  • 33