SVG Path คลาสพิเศษ (Copy 6345)
✨ นายกฤติน กลิ่นแก้ว
<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="50"/> <path d=" M50,50 h10 v10 h-20 v-20 h30 v30 h-40 v-40 h50 " stroke="blue" /> </svg> </body> </html>