SVG Path (Branch 4755)
✨ elzaphaN TV
<html> <head> <title>Let's Start </title> <style> body{ background:#eee; margin:1em; font-family:sans-serif; background:black; } svg{ background:white; width:80%; } </style> </head> <body> <!-- เขียนเว็บง่ายๆ และดูการแสดงผลด้านซ้ายมือได้เลย --> <svg viewbox="0 0 100 100"> <path d=" m10,10 C100, 10 100,50 30,50 C100,50 100, 90 10,90 z " stroke="red" stroke-width="5" stroke-linejoin="round"> </path> </svg> </body> </html>