Add custom or new fonts to HTML editor (TinyMCE)Issue Unable to add custom or new fonts to HTML editor (TinyMCE) ReleaseAllCauseThe only supported fonts are listed in the property file "glide.ui.html.editor.v4.font.collection"ResolutionNew or custom fonts are not supported but there is a way to add them within the body of the TinyMCE (HTML) editor. There are different ways to add the font within the body of a html file, here is an example: <html><head><title>Test</title></head><body><link href="https://fonts.googleapis.com/css?family=Darker+Grotesque&display=swap" rel="stylesheet"><h1 style="font-family: 'Darker Grotesque', sans-serif;">This is a font test</h1></body></html> Now, since the TinyMCE (HTML) editor give the options to edit the body only, it will look like this: <p> <link href="https://fonts.googleapis.com/css?family=Titillium+Web&display=swap" rel="stylesheet"> <h1 style="font-family: 'Darker Grotesque', sans-serif;">This is a font test</h1> </p>