वेब फोंट का उपयोग सीएसएस में फोंट को अनुमति देने के लिए किया जाता है, जो स्थानीय सिस्टम पर स्थापित नहीं होते हैं।
उदाहरण
निम्नलिखित कोड फ़ॉन्ट चेहरे का नमूना कोड दिखाता है:
<html> <head> <style> @font-face { font-family: myFirstFont; src: url(/css/font/SansationLight.woff); } div { font-family: myFirstFont; } </Style> </head> <body> <div>This is the example of font face with CSS3.</div> <p><b>Original Text :</b>This is the example of font face with CSS3.</p> </body> </html>
आउटपुट