Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="120" xmlns="http://www.w3.org/2000/svg"> <defs> <!-- Define a star shape once --> <polygon id="star" points="0,-20 5,-8 18,-8 8,1 12,14 0,6 -12,14 -8,1 -18,-8 -5,-8" fill="gold" stroke="goldenrod" stroke-width="1.5" /> </defs> <!-- Reuse it multiple times --> <use href="#star" x="50" y="60" /> <use href="#star" x="150" y="60" /> <use href="#star" x="250" y="60" /> </svg>