SVG Flag (Branch 4788)
✨ PONGSATORN PHATTARASRIVAJCHAKARN
<html> <head> <title>Let's Start </title> <style> body{ background:#ccc; margin:1em; font-family:sans-serif; } svg{ height:90vh; background:white; } </style> </head> <body> <svg viewbox="0 0 100 100"> <rect fill="red" width="15" height="100" x="45" y="0" ></rect> <rect fill="red" width="100" height="15" x="0" y="45" ></rect> </svg> </body> </html>