Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="150" xmlns="http://www.w3.org/2000/svg"> <!-- M: Move to, L: Line to, H: Horizontal line, V: Vertical line, Z: Close path --> <!-- Draw a house shape --> <path d="M 150 20 L 260 90 H 220 V 140 H 80 V 90 H 40 Z" fill="lightyellow" stroke="goldenrod" stroke-width="3" stroke-linejoin="round" /> </svg>