Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="author" content="Jacob Howard">
- <meta name="description" content="SVG Shapes in Hyper Text Markup Language!">
- <meta name="keywords" content="html, milwee, hhapes, svg, shapes, custom">
- <link rel="shortcut icon" type="image/png" href="img\favicons\mydrawingicon.png">
- <title>My SVG Shape</title>
- </head>
- <body>
- <center>
- <!-- The shape -->
- <svg width="1253px" height="893px">
- <rect width="100%" height="100%" style="fill:#FF0088;stroke-width:3px;stroke:#000000;" />
- <circle cx="50%" cy="50%" r="400" stroke="black" stroke-width="3" fill="#FF00FF" />
- <polygon points="200,10 250,190 160, 210" style="fill:#FFFF00;stroke:#000000;stroke-width:3" />
- <line x1="0" y1="0" x2="1253" y2="893" style="stroke:#FFFFFF;stroke-width:20;" />
- <line x1="1253" y1="0" x2="0" y2="893" style="stroke:#FFFFFF;stroke-width:20;" />
- </svg>
- </center>
- </body>
- </html>
Advertisement