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 simple diagonal line --> <line x1="20" y1="20" x2="280" y2="130" stroke="steelblue" stroke-width="3" /> <!-- A horizontal dashed line --> <line x1="20" y1="75" x2="280" y2="75" stroke="tomato" stroke-width="2" stroke-dasharray="10 6" /> </svg>