HTML

5.10_mydrawing.html

Nov 18th, 2016
191
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="author" content="Jacob Howard">
  6. <meta name="description" content="SVG Shapes in Hyper Text Markup Language!">
  7. <meta name="keywords" content="html, milwee, hhapes, svg, shapes, custom">
  8. <link rel="shortcut icon" type="image/png" href="img\favicons\mydrawingicon.png">
  9. <title>My SVG Shape</title>
  10. </head>
  11.  
  12. <body>
  13. <center>
  14. <!-- The shape -->
  15. <svg width="1253px" height="893px">
  16.     <rect width="100%" height="100%" style="fill:#FF0088;stroke-width:3px;stroke:#000000;" />
  17.     <circle cx="50%" cy="50%" r="400" stroke="black" stroke-width="3" fill="#FF00FF" />
  18.     <polygon points="200,10 250,190 160, 210" style="fill:#FFFF00;stroke:#000000;stroke-width:3" />
  19.     <line x1="0" y1="0" x2="1253" y2="893" style="stroke:#FFFFFF;stroke-width:20;" />
  20.     <line x1="1253" y1="0" x2="0" y2="893" style="stroke:#FFFFFF;stroke-width:20;" />
  21. </svg>
  22. </center>
  23. </body>
  24. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment