<!DOCTYPE html> <html> <head> <title> My First SVG Page</title> </head> <body> <object data="sun.svg" type="image/svg+xml" width="300px" height="300px"> <!-- Implement fallback code here, or display a message: --> <p>Your browser does not support SVG - please upgrade to a modern browser.</p> </object> <img src="sun.svg" alt="svg not supported!" /> </body> </html>