SVG 1 Sec C (เนี้ยว-วิรัลยุพา) (Copy 17964)
✨ นางสาววิรัลยุพา เพ็ชรอินทร์
<html> <head> <title>SVG </title> <style> body{ background:#666; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:#fff; width:90vmin; height:90vmin; display:block; margin:auto; box-shadow:0px 0px 10px #0006; } </style> </head> <body> <svg viewBox="0 0 100 100"> <rect width="10" height="10" x="10" y="10" fill="red" /> <rect width="50" height="20" x="80" y="90" fill="yellow" /> <rect width="45" height="20" x="20" y="30" fill="blue" /> <line x1="10" y1="10" x2="90" y2="90" stroke="pink" stroke-width="2"/> <line x1="10" y1="10" x2="90" y2="90" stroke="black" stroke-width="1"/> <line x1="50" y1="10" x2="90" y2="10" stroke="pink" stroke-width="2"/> <line x1="100" y1="90" x2="0" y2="90" stroke="black" stroke-width="1"/> <line x1="0" y1="90" x2="0" y2="0" stroke="black" stroke-width="1"/> <line x1="100" y1="" x2="0" y2="" stroke="black" stroke-width="1"/> </svg> </body> </html>