SVG Flag (Branch 4792) (Copy 4843)
✨ pornpawee
<html> <head> <title>Let's Start </title> <style> body{ background:green; margin:1em; font-family:sans-serif; } svg{ height:90vh; background:orange; } </style> </head> <body> <svg viewbox="0 0 100 100"> <rect fill="white" width="75" height="50" x="13" y="19" ></rect> <rect fill="red" width="75" height="10" x="13" y="40" ></rect> <rect fill="red" width="10" height="50" x="45" y="19" ></rect> <rect fill="red" width="10" height="4" x="67" y="27" ></rect> <rect fill="red" width="4" height="10" x="70" y="24" ></rect> <rect fill="red" width="10" height="4" x="67" y="57" ></rect> <rect fill="red" width="4" height="10" x="70" y="54" ></rect> <rect fill="red" width="10" height="4" x="25" y="57" ></rect> <rect fill="red" width="4" height="10" x="28" y="54" ></rect> <rect fill="red" width="10" height="4" x="25" y="27" ></rect> <rect fill="red" width="4" height="10" x="28" y="24" ></rect> </svg> </body> </html>