Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="150" xmlns="http://www.w3.org/2000/svg"> <!-- Styled with presentation attributes --> <circle cx="75" cy="75" r="50" fill="dodgerblue" stroke="navy" stroke-width="4" opacity="0.8" /> <!-- Styled with an inline style attribute --> <rect x="160" y="30" width="110" height="90" rx="10" style="fill: tomato; stroke: darkred; stroke-width: 3; opacity: 0.85;" /> </svg>