I'm hoping to get a little more information on the best way to format text within SVG The w3 offers this http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html#text_methods
But doesn't specify how I can build a font stack, I've tried treating the following xml code like css (as some suggested) but I've had no luck.
font-family:Times New Roman;
-inkscape-font-specification:Times New Roman
Question. How can I build a font stack for svg as per css?
(I'm not so interested in font-face or svg fonts because I believe from what I've read that they are not so widely supported at the moment.)
I've tried to format the text in these modes within the xml, but no luck;
font-family:Verdana,Times New Roman;
font-family:'Verdana,"Times New Roman"';
font-family:Verdana,"Times New Roman";
font-family:'Verdana,Times New Roman';
EDIT I've also found this from w3 http://www.w3.org/TR/SVG/text.html#FontPropertiesUsedBySVG which tells me to follow css, as per http://www.w3.org/TR/2008/REC-CSS2-20080411/fonts.html#font-specification but putting it in like css (font-family:"Times New Roman",Times,serif;) doesn't work.