Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="180" xmlns="http://www.w3.org/2000/svg"> <!-- A pentagon --> <polygon points="150,20 270,100 225,165 75,165 30,100" fill="mediumpurple" stroke="rebeccapurple" stroke-width="3" /> <!-- A star --> <polygon points="150,50 162,90 200,90 170,114 180,155 150,133 120,155 130,114 100,90 138,90" fill="gold" stroke="goldenrod" stroke-width="2" /> </svg>