block by curran d0c9242fe9caa5c1ac1f4d98f642c855

Pseudo Bar Chart I

Full Screen

A pseudo-bar chart for demonstrating basic SVG structure.

Built with blockbuilder.org

index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>SVG Example</title>
  </head>
  <body>
    <svg width="960" height="500">
      <rect x="18"  y="0"   width="170" height="500"></rect>
      <rect x="207" y="100" width="170" height="400"></rect>
      <rect x="395" y="200" width="170" height="300"></rect>
      <rect x="583" y="300" width="170" height="200"></rect>
      <rect x="771" y="400" width="170" height="100"></rect>
    </svg>
  </body>
</html>