Uncle
✨ นายศรัณย์ เชิดวงศ์ตระกูล
<html> <head> <title>Let's Start </title> <style> body{ background:#333; margin:1em; font-family:sans-serif; } svg{ background:grey; } </style> </head> <body> <svg viewBox="0 0 40 40"> <circle cx="20" cy="20" fill="white" stroke="black" stroke-width=".8" fill="none" r="15"></circle> <circle cx="15" cy="19" stroke="black" stroke-width=".5" fill="none" r="3.2"></circle> <circle cx="25" cy="19" stroke="black" stroke-width=".5" fill="none" r="3.2"></circle> <line x1="18" y1="19" x2="22" y2="19" stroke-width=".5" stroke="black"></line> <line x1="23" y1="3" x2="23" y2="13" stroke-width=".5" stroke="black"></line> <line x1="25" y1="4" x2="25" y2="14.5" stroke-width=".5" stroke="black"></line> <line x1="27" y1=3.5 x2="27" y2="13.5" stroke-width=".5" stroke="black"></line> <line x1="29" y1=7 x2="29" y2="13" stroke-width=".5" stroke="black"></line> <line x1="5" y1="18" x2="9.5" y2="18.5" stroke-width="5.3" stroke="black"></line> <line x1="35" y1="18" x2="30.5" y2="18.5" stroke-width="5.3" stroke="black"></line> <defs> <linearGradient id="e" x1="18" y1="24" x2="18" y2="33" gradientUnits="userSpaceOnUse"> <stop stop-color="black" offset="0" /> <stop stop-color="white" offset="1" /> </linearGradient> </defs> <rect x="17.5" y="24" fill="url(#e)" width="5" height="6.5" stroke="black" stroke-width=".3"></rect> </svg> <!-- Grid --> <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"/> --> </svg> </body> </html>