Html font / vector graphic issue

what's the best way to represent vector / font in html?

+5
source share
2 answers

W3C develops and recommends Scalable Vector Graphics for Vector Graphics. All major modern web browsers support and display SVG markup directly, with the exception of Internet Explorer. However, IE 9 will support and display SVG directly. All versions of IE starting with version 5 support Vector Markup Language . Although Microsoft continues to document VML, in 1998 the development of the format was discontinued.

You might be interested in checking out the following basic SVG examples:

+1

- - CSS3. :

@font-face { font-family: 'GoodFootRegular';
src: url('goodfoot.eot');
src: local('Good Foot'), local('GoodFoot'), url('goodfoot.woff') format('woff'), url('goodfoot.ttf') format('truetype');}
.classname{ font:21px bold normal GoodFootRegular;}
0

All Articles