SVG Flag (Copy 4874)
✨ 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="black" width="100" height="33.33" x="0" y="0" > </rect> <rect fill="red" width="100" height="33.33" x="0" y="33.33" > </rect> <rect fill="yellow" width="100" height="33.34" x="0" y="66.66" > </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>