SVG Flag (Branch 4812)
✨ Alpaca TV
<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 200 200" x="0" y="0" width="60"> <polygon points=" 50,125 50,50 30,50 130,0 170,50 150,50 150,125 " fill="pink" /> </svg> </svg> </body> </html>