Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 30th, 2012  |  syntax: None  |  size: 1.66 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Using CSS font-family to select Droid fonts not working on Android
  2. <p style='font-family: "Droid Sans",sans-serif;'>vând whisky și tequila, preț fix.</p>
  3. <p style='font-family: "Droid Sans Mono",monospace;'>vând whisky și tequila, preț fix.</p>
  4. <p style='font-family: "Droid Serif",serif;'>vând whisky și tequila, preț fix.</p>
  5.        
  6. @font-face {
  7.     font-family: 'DroidSans';
  8.     src: url('font/DroidSans-webfont.eot?') format('eot'),
  9.          url('font/DroidSans-webfont.woff') format('woff'),
  10.          url('font/DroidSans-webfont.ttf') format('truetype'),
  11.          url('font/DroidSans-webfont.svg#webfontw7zqO19G') format('svg');
  12.     font-weight: normal;
  13.     font-style: normal;
  14.  
  15. }
  16.  
  17. @font-face {
  18.     font-family: 'DroidSansMono';
  19.     src: url('font/DroidSans-Mono-webfont.eot?') format('eot'),
  20.          url('font/DroidSans-Mono-webfont.woff') format('woff'),
  21.          url('font/DroidSans-Mono-webfont.ttf') format('truetype'),
  22.          url('font/DroidSans-Mono-webfont.svg#webfontSOhoM6aS') format('svg');
  23.     font-weight: normal;
  24.     font-style: normal;
  25.  
  26. }
  27.  
  28. @font-face {
  29.     font-family: 'DroidSerif';
  30.     src: url('font/DroidSerif-webfont.eot?') format('eot'),
  31.          url('font/DroidSerif-webfont.woff') format('woff'),
  32.          url('font/DroidSerif-webfont.ttf') format('truetype'),
  33.          url('font/DroidSerif-webfont.svg#webfontw7zqO19G') format('svg');
  34.     font-weight: normal;
  35.     font-style: normal;
  36.  
  37. }
  38.        
  39. <p style='font-family: "DroidSans",sans-serif;'>vând whisky și tequila, preț fix.</p>
  40. <p style='font-family: "DroidSansMono",monospace;'>vând whisky și tequila, preț fix.</p>
  41. <p style='font-family: "DroidSerif",serif;'>vând whisky și tequila, preț fix.</p>