I am using a web font that has several different, "M's" to choose from, in the glyphs panel. The default "M" that keeps being displayed in my website is hideous. I would like to use a better looking "M" from one of the font's alternate character choices.
In the glyphs panel (within Illustrator) the "M" character I want to use is: U+004d Alternates#2 (aalt2)
I have this currently in my CSS:
.script:before {
content: "\004D";
}
Unfortunately, this code does not pull the alternate "M" I want. It just pulls the default "M" that I'm trying to get rid of.
Is this even possible to call an alternate "M" from a font, and display it on a web page?