The Artima Developer Community
Sponsored Link

Web Buzz Forum
Font Embedding with CSS - @font-face

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Lee v

Posts: 403
Nickname: a1plus19
Registered: Apr, 2011

Lee - helping out tech stuff.
Font Embedding with CSS - @font-face Posted: May 29, 2011 12:25 PM
Reply to this message Reply

This post originated from an RSS feed registered with Web Buzz by Lee v.
Original Post: Font Embedding with CSS - @font-face
Feed Title: IT Jungles
Feed URL: http://www.itjungles.com/rss
Feed Description: Learn all tech stuff at ITJungles.com
Latest Web Buzz Posts
Latest Web Buzz Posts by Lee v
Latest Posts From IT Jungles

Advertisement

With the @font-face {...} selector you have the possibility to import a font in a webpage. If it is not installed on the visitors computer, it is temporally available during the visit of your page. Sounds good, is as simple solution by following css:

<style type="text/css">

@font-face {
font-family:'FrizQuadrataBTRoman';
src: url('/../fonts/friz_quadrata_bt-webfont.eot?') format('eot'),
url('../fonts/friz_quadrata_bt-webfont.woff') format('woff'),
url('../fonts/friz_quadrata_bt-webfont.ttf') format('truetype'),
url('../fonts/friz_quadrata_bt-webfont.svg#webfontyNrUJAgQ') format('svg');
font-weight: normal;
font-style: normal;
}

</style>

It validates as CSS2, CSS3

Read: Font Embedding with CSS - @font-face

Topic: Flight Schedule Right on Google Search Result Page Previous Topic   Next Topic Topic: Save and Restore Desktop Icon Layout the Easy Way

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use