Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg viewBox="0 0 500 300" xmlns="http://www.w3.org/2000/svg"> <defs> <style><![CDATA[ feDropShadow { flood-color: darkgreen; } ]]></style> <filter id="shadow1"> <feDropShadow dx="10" dy="10" stdDeviation="0" /> </filter> <filter id="shadow2"> <feDropShadow dx="3" dy="3" stdDeviation="3" /> </filter> </defs> <rect x="0" y="0" width="100" height="100" fill="limegreen" style="filter: url(#shadow1);" /> <rect x="150" y="0" width="100" height="100" fill="lightgreen" style="filter: url(#shadow2);" /> </svg>