How to write text with custom fonts using SVG two-dimensional vector graphics in HTML

1 Answer

0 votes
<svg width="600" height="600">    
<style>
    @import url("https://fonts.googleapis.com/css?family=Tangerine");
</style>
<text x="30" y="70" font-family="Tangerine">Once Upon a Time ...</text>
</svg>

 



answered Oct 11, 2019 by avibootz
...