Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Lab 5a</title>
  5. <link href="lab5a.css" rel="stylesheet" />
  6. </head>
  7. <body>
  8. <svg id="world">
  9. <rect id="sky" x="0" y="0" width="100%" height="100%" fill="SkyBlue"/>
  10. <rect class="back_buildings" x="0" y="299" width="100%" height="50%"/>
  11. <!-- Building 1 -->
  12. <rect class="back_buildings" x="0" y="275" width="20" height="25"/>
  13.  
  14. <!-- Building 2 -->
  15. <rect class="back_buildings" x="25" y="250" width="30" height="50"/>
  16. <!-- Building 3 bottom -->
  17. <rect class="back_buildings" x="60" y="200" width="30" height="100"/>
  18. <!-- Building 3 top -->
  19. <rect class="back_buildings" x="65" y="180" width="20" height="21"/>
  20.  
  21. <!-- Building 4 bottom -->
  22. <rect class="back_buildings" x="95" y="200" width="30" height="100"/>
  23. <!-- Building 4 top -->
  24. <rect class="back_buildings" x="100" y="180" width="20" height="21"/>
  25. <!-- Building 5 bottom -->
  26. <rect class="back_buildings" x="130" y="199" width="20" height="101"/>
  27. <!-- Building 5 triangle -->
  28. <polygon class="back_buildings" points="130,200 140,180 150,200"/>
  29. <!-- Building 6 -->
  30. <polygon class="back_buildings" points="149,280 160,280 160,210 210,210 210,300 149,300 149,180"/>
  31. <!-- Building 7 -->
  32. <rect class="back_buildings" x="220" y="275" width="20" height="25"/>
  33. <!-- Building 8 -->
  34. <rect class="back_buildings" x="250" y="250" width="30" height="50"/>
  35.  
  36. <!-- foreground rectangle -->
  37. <rect class="fore_buildings" x="0" y="400" width="100%" height="50%"/>
  38.  
  39. </svg>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement