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> <radialGradient id="glowGrad" cx="50%" cy="50%" r="50%"> <stop offset="0%" stop-color="#fff176" /> <stop offset="60%" stop-color="#ffb300" /> <stop offset="100%" stop-color="#e65100" stop-opacity="0" /> </radialGradient> </defs> <circle cx="150" cy="75" r="70" fill="url(#glowGrad)" /> </svg>