Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 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="500" height="200">
  21. <line x1="10" y1="10" x2="10" y2="190" stroke="orange" stroke-width="1" />
  22. <line x1="10" y1="10" x2="490" y2="10" stroke="orange" stroke-width="1" />
  23. <line x1="10" y1="190" x2="490" y2="190" stroke="orange" stroke-width="1" />
  24. <line x1="490" y1="10" x2="490" y2="190" stroke="orange" stroke-width="1" />
  25. <rect x="10" y="10" width="480" height="180" fill="#FFFF00" />
  26. <line x1="140" y1="30" x2="200" y2="50" stroke="black" stroke-width="1" />
  27. <line x1="120" y1="45" x2="185" y2="67" stroke="black" stroke-width="1" />
  28. <circle cx="220" cy="80" r="30" fill="black" />
  29. <text x="360" y="45" fill="charcoal" font-size="30" font-weight="bold" font-family="Tahoma">Falling</text>
  30. <line x1="100" y1="75" x2="410" y2="180" stroke="orange" stroke-width="8" />
  31. <circle cx="250" cy="160" r="30" fill="orange" />
  32. </svg>
  33.  
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement