SVG Flag (Branch 4832)
✨ RUJRAWEE MEELA
<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"> <circle fill="red" cx="0" cy="0" r="20" ></circle> <circle fill="yellow" cx="0" cy="0" r="10" ></circle> <rect fill="red" width="100" height="20" x="0" y="0" ></rect> <rect fill="white" width="100" height="20" x="0" y="20" ></rect> <rect fill="blue" width="100" height="35" x="0" y="25" ></rect> <rect fill="white" width="100" height="20" x="0" y="15" ></rect> <rect fill="red" width="100" height="20" x="0" y="80" ></rect> </svg> </body> </html>