Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="250" xmlns="http://www.w3.org/2000/svg"> <!-- Elliptical arc: a half-circle --> <path d="M 40 150 A 80 80 0 0 1 260 150" fill="lavender" stroke="mediumpurple" stroke-width="3" /> <!-- A pie-slice arc --> <path d="M 150 175 L 210 175 A 60 60 0 0 1 150 235 Z" fill="coral" stroke="tomato" stroke-width="2" /> </svg>