SVG Path คลาสพิเศษ (Branch 6359)
✨ KONGPHOP NAUNSANTHIA
<html> <head> <title>Let's Start </title> <style> body{ background:grey; margin:1em; font-family:sans-serif; } svg{ background:white; } </style> </head> <body> <svg viewBox="0 0 100 100"> <circle r="1" fill="red" cx="50" cy="45"/> <path d=" M20,20 h10 v-10 h40 v10 h10 v50 h-10 v10 h-40 v-10 h-10 v-50 " stroke-width="2" stroke="red" stroke-linecap="round" stroke-linejoin="round" fill="#0000" /> <path d="M40,30 l10,-10 l10,10 l-10,10 l-10,-10 " stroke-width="2" stroke="yellow" stroke-linecap="round" stroke-linejoin="round" fill="#0000" /> <path d="M40,40 l10,-10 l10,10 l-10,10 l-10,-10 " stroke-width="2" stroke="yellow" stroke-linecap="round" stroke-linejoin="round" fill="#0000" /> <path d="M40,50 l10,-10 l10,10 l-10,10 l-10,-10 " stroke-width="2" stroke="yellow" stroke-linecap="round" stroke-linejoin="round" fill="#0000" /> <path d="M40,60 l10,-10 l10,10 l-10,10 l-10,-10 " stroke-width="2" stroke="yellow" stroke-linecap="round" stroke-linejoin="round" fill="#0000" /> <path d="M15,5 h70 v80 h-70 v-80 " stroke-width="2" stroke="red" stroke-linecap="round" stroke-linejoin="round" fill="#0000" />/> </svg> </body> </html>