Jon Karrer

SVG

SVG (Scalable Vector Graphics) provides several basic shapes that you can use to create various graphics. Here are the main shapes available in SVG:

  1. Rectangle (<rect>):

    <svg width="100" height="100">
      <rect x="10" y="10" width="80" height="80" fill="blue" />
    </svg>
    
  2. Circle (<circle>):

    <svg width="100" height="100">
      <circle cx="50" cy="50" r="40" fill="red" />
    </svg>
    
  3. Ellipse (<ellipse>):

    <svg width="100" height="100">
      <ellipse cx="50" cy="50" rx="40" ry="20" fill="green" />
    </svg>
    
  4. Line (<line>):

    <svg width="100" height="100">
      <line x1="10" y1="10" x2="90" y2="90" stroke="black" stroke-width="2" />
    </svg>
    
  5. Polygon (<polygon>):

    <svg width="100" height="100">
      <polygon points="50,10 90,90 10,90" fill="purple" />
    </svg>
    
  6. Polyline (<polyline>):

    <svg width="100" height="100">
      <polyline
        points="10,10 50,50 90,10"
        fill="none"
        stroke="orange"
        stroke-width="2"
      />
    </svg>
    
  7. Path (<path>):

    <svg width="100" height="100">
      <path
        d="M10 80 Q 95 10 180 80"
        stroke="brown"
        fill="none"
        stroke-width="2"
      />
    </svg>
    

Explanation of Attributes

These elements provide the building blocks for creating complex SVG graphics and animations.

Each SVG shape has a variety of attributes that define its appearance and behavior. Here's a detailed look at the main attributes available for each type of SVG shape:

Rectangle (<rect>)

Circle (<circle>)

Ellipse (<ellipse>)

Line (<line>)

Polygon (<polygon>)

Polyline (<polyline>)

Path (<path>)

Common Attributes

In addition to the specific attributes listed above, there are several common attributes that can be used with any SVG shape:

Examples

Here are examples of each shape with a few attributes:

Rectangle

<rect
  x="10"
  y="10"
  width="80"
  height="50"
  rx="10"
  ry="10"
  fill="blue"
  stroke="black"
  stroke-width="2"
/>

Circle

<circle cx="50" cy="50" r="40" fill="red" stroke="black" stroke-width="2" />

Ellipse

<ellipse
  cx="50"
  cy="50"
  rx="40"
  ry="20"
  fill="green"
  stroke="black"
  stroke-width="2"
/>

Line

<line x1="10" y1="10" x2="90" y2="90" stroke="black" stroke-width="2" />

Polygon

<polygon
  points="50,10 90,90 10,90"
  fill="purple"
  stroke="black"
  stroke-width="2"
/>

Polyline

<polyline
  points="10,10 50,50 90,10"
  fill="none"
  stroke="orange"
  stroke-width="2"
/>

Path

<path d="M10 80 Q 95 10 180 80" stroke="brown" fill="none" stroke-width="2" />

These attributes and shapes allow for a wide variety of graphics and animations to be created using SVG.