Advertisement
Guest User

Untitled

a guest
May 28th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>SVG Example</title>
  6. <style type="text/css">
  7.  
  8. body {
  9. background-color: #ddddff;
  10. }
  11.  
  12. svg {
  13. background-color: white;
  14. }
  15.  
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <svg width="530" height="300">
  21. <rect x="50" y="150" width="100" height="100" fill="purple" />
  22. <circle cx="250" cy="200" r="50" fill="purple" />
  23. <rect x="350" y="150" width="100" height="100" fill="purple" />
  24. <text x="30" y="100" fill="purple" font-size="42" font-weight="bold" font-family= "Helvetica">SVG module 2 exercise</text>
  25. </svg>
  26.  
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement