Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="200" xmlns="http://www.w3.org/2000/svg"> <!-- A basic rectangle --> <rect x="20" y="20" width="120" height="80" fill="steelblue" /> <!-- A rectangle with rounded corners --> <rect x="160" y="20" width="120" height="80" rx="20" ry="20" fill="coral" /> </svg>