Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="150" xmlns="http://www.w3.org/2000/svg"> <defs> <!-- Define a small tile pattern --> <pattern id="dotsPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"> <circle cx="10" cy="10" r="5" fill="steelblue" opacity="0.7" /> </pattern> </defs> <!-- Fill a rectangle with the repeating pattern --> <rect x="10" y="10" width="280" height="130" rx="8" fill="url(#dotsPattern)" stroke="#ccc" stroke-width="1" /> </svg>