Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="120" xmlns="http://www.w3.org/2000/svg"> <!-- A rectangle with a stroke but no fill --> <rect x="20" y="20" width="120" height="80" fill="none" stroke="darkorange" stroke-width="4" /> <!-- A rectangle with a dashed stroke --> <rect x="160" y="20" width="120" height="80" fill="lightyellow" stroke="goldenrod" stroke-width="3" stroke-dasharray="10 4" rx="8" /> </svg>