SVG Flag (Copy 4814)
✨ NARUMOL THONGCHUE
<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="pink" width="80" height="40" x="5" y="19" ></rect> </svg> </body> </html>