I am trying to format the text that is sent from the bot to the user like change font color,size etc.
Below are some of the methods that I tried to format the text.
text = "<b><p class=\"timestext\"> " + text + " </p></b>";
text = "<b><div style=\"color:rgb(255,255,0)\">" + text + "</div></b>";
text = "<font color=\"rgb(255,255,0)\">" + text + "</font>";
HeroCard card = new HeroCard()
{
Title = "Title",
Text = text,
Buttons = buttons_list
};
In the above code, only the tag for bold works and font tag doesn't affect the text.
Can someone mention the problem in the above code or any method to format the text in bot framework.