FInal My Batman Low polygon
✨ นายธนดล พะโรศิลป์
<html> <head> <title>The Fox</title> <style> body{ background:#333; margin:1em; } svg{ background:#042178; } h1{ text-align:center; color:brown; } text{ fill: #FF9800; } </style> </head> <body> <h1></h1> <svg viewbox="0 0 100 100"> <defs> <linearGradient id="linear" x1="10%" y1="10%" x2="100%" y2="100%"> <stop offset="20%" stop-color="#fcb045"/> <stop offset="100%" stop-color="#fd1d1d"/> </linearGradient> </defs> <!--light--> <circle cx="50" cy="50" r="80" fill="#eded02" opacity="0"> <animate attributeName="opacity" values="0.0;0.2;0.0" dur="3s" repeatCount="indefinite"/></circle> <circle cx="50" cy="50" r="67" stroke="url(#linear)" stroke-width="8" fill="transparent"/> <circle cx="50" cy="50" r="50" fill="lightyellow"></circle> <path d="M"/> <path fill="#0000" stroke="black" d="M30,30 Q15,35 10,50 Q22,48 30,55 Q45,53 50,67 Q55,53 70,55 Q78,48 90,50 Q85,35 70,30 " /> <defs> <pattern id="grid" viewBox="0,0,10,10" width="1%" height="1%"> <rect fill="#0001" width="1" height="10" x="1" y="0"/> <rect fill="#0001" width="1" height="10" x="3" y="0"/> <rect fill="#0001" width="1" height="10" x="5" y="0"/> <rect fill="#0001" width="1" height="10" x="7" y="0"/> <rect fill="#0001" width="1" height="10" x="9" y="0"/> <rect fill="#0001" width="10" height="1" x="0" y="1"/> <rect fill="#0001" width="10" height="1" x="0" y="3"/> <rect fill="#0001" width="10" height="1" x="0" y="5"/> <rect fill="#0001" width="10" height="1" x="0" y="7"/> <rect fill="#0001" width="10" height="1" x="0" y="9"/> <path d="M0 0 h10 L9 1 h-8 v8 L0 10 z" fill="#ff05"/> <path d="M10 10 h-10 L1 9 h8 v-8 L10 0 z" fill="#0f05"/> <rect fill="#0002" width="10" height=".1" x="0" y="9.9"/> <rect fill="#0002" width="10" height=".1" x="0" y="0"/> <rect fill="#0002" height="10" width=".1" y="0" x="9.9"/> <rect fill="#0002" height="10" width=".1" y="0" x="0"/> </pattern> </defs> <rect fill="url(#grid)" width="1000" height="1000" x="0" y="0" style="opacity:.5"/> </svg> </svg> </body> </html>