Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 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="600" height="400">
  21. <rect x="1" y="1" width="200" height="400" fill="#009A49" />
  22. <rect x="400" y="1" width="200" height="400" fill="#FF7900" />
  23. <circle cx="300" cy="200" r="50" fill="black" />
  24. <text x="210" y="140" fill="charcoal" font-size="42" font-weight="bold" font-family="Helvetica">Irish Flag</text>
  25. <text x="210" y="280" fill="charcoal" font-size="30" font-weight="bold" font-family="Helvetica">Hockey Puck</text>
  26. </svg>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement