SVG flag (Copy 5350)
✨ CHANISARA WATCHARAPONKUL
<html> <head> <title>Let's Start </title> <style> body{ background:black; margin:0; width:1000px; } svg{ background:#eee; } </style> </head> <body> <svg viewBox="0 0 37 28"> <rect fill="#c60c30" width="37" height="28" x="0" y="0"> </rect> <polygon points="12, 0 16, 0 16, 28 12, 28" fill="white"> </polygon> <polygon points="0, 12 0, 16 37, 16 37,12" fill="white"></polygon> <!-- <rect fill="white" width="74" height="8" y="24"></rect> --> </svg> </body> </html>