17 lines
476 B
HTML
17 lines
476 B
HTML
|
|
<svg width="400px" height="300px" version="1.1"
|
|
xmlns = 'http://www.w3.org/2000/svg'>
|
|
<defs>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: Arvo;
|
|
src: url('/font-files/arvo-regular-webfont.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
</style>
|
|
</defs>
|
|
<text x="100" y="100"
|
|
style="font-family: 'Arvo'; font-weight:normal;
|
|
font-style: normal">Text using CSS @font-face</text>
|
|
</svg> |