SVG Flag (Branch 4784)
✨ นางสาวรจนา หอมประสิทธิ์
<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="80" height="50" x="5" y="15" ></rect> <rect fill="blue" width="80" height="30" x="5" y="25" ></rect> <circle fill="white" cx="45" cy="40" r="10" ></circle> </svg> </body> </html>