i want use font awesome in my form.
my form content img and asp:imagebutton.
i want use font awesome in img tag but this not work.
my code is :
<img id="imgsaleNew" title="Create" runat="server" class="flaticon-yield" onclick="imgsaleNew_OnClick();" />
<asp:ImageButton ID="imgsaleOpen" runat="server" CausesValidation="false" ToolTip="Open" OnClick="imgsaleOpen_Click" class="flaticon-yield"/>
My Css Class Is:
@font-face {
font-family: "Flaticon";
src: url("Font/flaticon.eot");
src: url("Font/flaticon.eot#iefix") format("embedded-opentype"),
url("Font/flaticon.woff") format("woff"),
url("Font/flaticon.ttf") format("truetype"),
url("Font/flaticon.svg") format("svg");
font-weight: normal;
font-style: normal;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 63px;
font-style: normal;
color:#368ee0;
}.flaticon-yield:before {
content: "\e000";
}