Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="150" xmlns="http://www.w3.org/2000/svg"> <!-- A circle with a stroke --> <circle cx="80" cy="75" r="55" fill="lightskyblue" stroke="steelblue" stroke-width="5" /> <!-- An ellipse with a dashed stroke --> <ellipse cx="220" cy="75" rx="70" ry="40" fill="lavender" stroke="slateblue" stroke-width="3" stroke-dasharray="8 4" /> </svg>