Does anyone know how to remove the special curves that a font adds to the last letter of a word?
The font in question is called Rolling Pen.
https://i.sstatic.net/PEO0L.png
In the image above, you can see two different variations of the letter "e".
Thank you!
EDIT: Thanks to Christian Flores, I found this helpful CSS setting:
-moz-font-feature-settings: "kern", "liga" 0, "calt" 0;
-ms-font-feature-settings: "kern", "liga" 0, "calt" 0;
-o-font-feature-settings: "kern", "liga" 0, "calt" 0;
-webkit-font-feature-settings: "kern", "liga" 0, "calt" 0;
font-feature-settings: "kern", "liga" 0, "calt" 0;
This solution addressed my issue perfectly!