SVG Flag (Branch 4822)
✨ SUPAPHOL KODTOM
<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="100" height="20" x="0" y="0" > </rect> <rect fill="white" width="100" height="60" x="0" y="20" > </rect> <rect fill="red" width="100" height="20" x="0" y="80" > </rect> <svg viewbox="0 0 100 80" x="0" y="0" width="20"> <polygon points=" 0,20 50,20 50,0 100,40 50,80 50,60 0,60 " fill="pink" /> </svg> </svg> </body> </html>