<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Embedding SVG Into HTML Pages</title> <style> svg { border: 3px solid blue; } </style> </head> <body> <svg width="300" height="200"> <text x="40" y="40" style="font-size:20px;"> The Browser support SVG </text> Sorry, The browser not support SVG. </svg> </body> </html>