Questions tagged [webfonts]

Technology that enables people to use fonts on demand over the Web without requiring installation in the operating system.

What are WebFonts?

WebFonts are a technology that enable people to use fonts on demand over the Web without requiring installation in the operating system. The W3C working group has introduced webfonts as part of the CSS 2 specification, and addendums are included in CSS 3. Until recently, downloadable fonts have not been common on the Web due to the lack of an interoperable font format. Modern browsers support the now widely used format (and woff2 for better compression). In the past other formats like eot (initial proprietary Microsoft), ttf (uncompressed) or svg were used.

Links

1549 questions
0
votes
0 answers

Test whether a device has a certain font available in js

Is it possible to test whether a certain device has a font available to the web browser? ie. If device does not have Roboto available, do Roboto @font-face loading.
Niels
  • 353
  • 1
  • 6
  • 15
0
votes
0 answers

How to use special characters in PHP "S#?!☠✖"

I have this UTF-8 text "S#?!☠✖" I would like to use it in PHP for placing the text in an image. ImageTTFText ($bild, $fontsize, $fontangle, $xcord, $ycord, $text_color, $font, $text); It works well, but for the last two sign I will get an ??. I…
hamburger
  • 1,339
  • 4
  • 20
  • 41
0
votes
0 answers

Using a Self-Hosted Webfont, Google says: Font has been blocked from loading by Cross-Origin Resource Sharing policy

I'm self hosting 2 Webfonts which displayed smoothly and nice on my website across all browsers for almost 3 weeks. Today I noticed that Safari is the only browser that still displays the fonts correctly. Chrome and Firefox are no longer loading…
Chris Bean
  • 21
  • 1
  • 2
  • 7
0
votes
1 answer

how to remove the accent in fonts

Hi I have used a font but the letter with the accent shows in bold like this Yasemin enar ğ uloo. I want it to show without the letter with the accent getting affected in bold. Thanks in advance
user3564005
  • 33
  • 1
  • 5
0
votes
1 answer

TinyMCE icons not showing due to browser security setting

I am working on a web project that is used by security minded people. Some of them have turned off webfonts and due to this the icons such as undo, redo, bulleted list ext.ext. are not showing up. That being said, the first thing i did was attempted…
josh123a123
  • 2,070
  • 1
  • 13
  • 21
0
votes
0 answers

Loading web fonts in firefox

I'm recreating an website. That old website uses two different webfont I'd like to take over to the new one. The first font is one of googles web fonts. It is embedded using googles following suggested code (just a CSS file containing the actual…
kot
  • 65
  • 1
  • 6
0
votes
0 answers

Does a client needs a font to see a PDF document generated on the server?

A client/server architecture generates in the server a document with a specific font. Does need the client to install the same font to see the document? The document can be accessed through a desktop client application and web browsers(cient)
Zinov
  • 3,817
  • 5
  • 36
  • 70
0
votes
1 answer

Stylus ParseError: Generating Font Icons

I'm trying to use Stylus to generate font icons in Icomoon, to also generate variables, but I'm getting a parseError: ParseError: icons.styl:930 926| for icon, i in $icons 927| .icon-{icon} 928| &:before 929| …
user1429980
  • 6,872
  • 2
  • 43
  • 53
0
votes
1 answer

CDN web fonts not working in Firefox

We are adding our custom website font via our CDN. Our CSS code is below. This is in our main.css file which is included in the header of our website. This works in Safari and Chrome on OSX, but on Windows, it works only in Safari. And maybe IE10.…
Khom Nazid
  • 548
  • 1
  • 7
  • 20
0
votes
1 answer

Unicodes not rendering properly in mobile devices

I am having difficulty having geez texts like these እቶም ዝቐለሉ ክፋል ናይቲ ቋንቋ እዮም፣ በዚ ኣብ ታሕቲ to which you can find more information on wikipedia. Are not rendering at all on most mobile platforms. I don't know what the causes are. I have declared the…
robue-a7119895
  • 816
  • 2
  • 11
  • 31
0
votes
2 answers

Can webfonts be non-utf compatible?

I'm not sure what else to blame... But I've tried everything, including reconverting original tff to web fonts using squirrel converter. The font in question is this: http://www.fonts2u.com/bolnisi.font The description it says: Unicode BMP only…
user796443
0
votes
2 answers

Firefox block font-face cross domain request with rails

so i'm trying to fix @font-face problem with firefox, i'm using rails4/ruby2 So i try to put my .htaccess in /public folder, and serving font files in /public folder too, but the request still are being blocked, someone can help about…
Wagner Moreira
  • 1,033
  • 1
  • 16
  • 40
0
votes
4 answers

Font face does not seems to work

i have downloaded the Bebas Neue.ttf and uploaded to my fonts folder via ftp. Then i added the following code to my css file @font-face { font-family: "bebas"; src: url(fonts/Bebas Neue.ttf) format("truetype"); } and to apply to my title head i…
Melvin
  • 383
  • 1
  • 13
  • 40
0
votes
1 answer

Why does IE8 not render webfonts on an intranet site even though compatibility mode is off and X-UA-Compatible is set in both header and tag?

I'm working on a site for a corporation that uses their own customized, locked-down version of IE8 (including Developer Tools being switched off, yay). I recently added webfonts to the site. These render as expected even under the corporation's own…
0
votes
1 answer

fontforge EnvironmentError: Could not load image file

I am trying to create font from single SVG files. Here the sample: #!/usr/local/bin/fontforge # file test.py import fontforge; font=fontforge.font(); glyph = font.createChar(65); glyph.importOutlines("/home/user/guitar.svg"); # or…
pvolyntsev
  • 141
  • 8