<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <!-- Chrome, Firefox OS and Opera --> <meta name="theme-color" content="rgb(0,0,16)"> <!-- Safari --> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <title>Fractals</title> <!-- svg works only for Firefox (17.8.2019) --> <link rel="icon" href="style/favicon.svg" type="image/svg+xml" sizes="any"> <link rel="icon" type="image/png" href="style/favicon32.png" sizes="32x32"> <link rel="manifest" href="manifest.json"> <link rel="stylesheet" href="style/core.css"> <style> html, body { background-color: rgb(0,0,16); } </style> </head> <body> <h1>Inward spiral</h1> <object data="randomFractal.svg" type="image/svg+xml" ></object> </body> </html>