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> <linearGradient id="sunsetGrad" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#f7971e" /> <stop offset="50%" stop-color="#e84393" /> <stop offset="100%" stop-color="#5b3cc4" /> </linearGradient> </defs> <rect x="10" y="10" width="280" height="130" rx="12" fill="url(#sunsetGrad)" /> </svg>