HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> .small { font: italic 13px sans-serif; } .medium { font: bold 30px sans-serif; } .large { font: italic 40px serif; fill: red; } </style> </head> <body> <svg height="70" width="180"> <text x="20" y="35" class="small">He</text> <text x="40" y="35" class="medium">is</text> <text x="65" y="55" class="large">Great!</text> </svg> </body> </html>
OUTPUT
×

Save as Private