User1587720337 posted
My only concern is how do I set the custom font that I have installed under the Windows Font folder, here what I am doing now
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Attributes.Add("style", "font-family: Holland.ttf");
}
protected void Button2_Click(object sender, EventArgs e)
{
Label1.Attributes.Add("style", "font-family: Bitter.ttf");
}
but it's not reflecting the changes. Any other way to do, I need to use through the code behind instead of the aspx page (using font-face)