SVG 1 Sec B
✨ Jabont
<html> <head> <title>SVG </title> <style> body{ background:#666; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:white; width:90vmin; height:90vmin; display:block; margin:auto; box-shadow:0px 0px 10px #0006; } </style> </head> <body> <svg viewBox="0 0 100 100"> <polygon points="25,5 5,5 5,25 45,45" fill="hsl(190,100%,60%)"/> <polygon points="45,45 20,50 10,60 30,70" fill="hsl(190,100%,70%)"/> </svg> </body> </html>