ตัวนากโผล่ขึ้นมาจากทะเลค้าบ (Copy 7885)
✨ นายจักราภัทร สุดใจ
<html> <head> <title>Let's Start </title> <style> body{ background:; margin:0px; font-family:sans-serif; } svg{ background:#f12e00; } </style> </head> <body> <svg viewBox="0 0 200 200"> <!-- Code Here --> <circle r="45" cx="50" cy ="50" fill="#ffce25"></circle> <svg> <animate attributeName="y" values="-15;0;-15" dur="3s" repeatCount="indefinite" /> <g id="otter" transform="translate(0 15)"> <!-- face --> <path stroke-width="2" stroke-linecap="round" fill="#895423" d=" M20,50 C11,30 50,30 40,50 " ></path> <!-- eyes&ears --> <circle r="1" cx="26" cy="42" fill="black"> </circle> <circle r="1" cx="34" cy="42" fill="black"> </circle> <circle r="3" cx="22" cy="40" fill="#895423"></circle> <circle r="3" cx="38.5" cy="40" fill="#895423"></circle> <!-- nose --> <path stroke-width="2" stroke-linecap="round" fill="black" d=" M30,44 c10,3 -10,3 0,0 " ></path> <!-- mouth --> <path stroke-width=".7" fill="#0000" stroke="black" stroke-linecap="round" d="M30 46 q0 2.5 1.5 1.5 M30 46 q0 2.5 -1.5 1.5"/> </g> </svg> <!-- sea --> <path stroke-width=".8" fill="#0500ad" stroke="#0500ad" stroke-linecap="round" d=" M5.2 50 q5 -10 14 1 M41 50 q4 -9 16 2 M55 50 q7 -10 20 4 M65 50 q4 -17 17 2 M80 50 q7 -8 15 0"/> <path stroke-width=".8" fill="#0500ad" stroke="#0500ad" stroke-linecap="round" d="M5.2 50 C2,103 90.5,116 95,50"/> <defs> <pattern id="grid" viewBox="0,0,10,10" width="1%" height="1%"> <rect fill="#0001" width="1" height="10" x="1" y="0"/> <rect fill="#0001" width="1" height="10" x="3" y="0"/> <rect fill="#0001" width="1" height="10" x="5" y="0"/> <rect fill="#0001" width="1" height="10" x="7" y="0"/> <rect fill="#0001" width="1" height="10" x="9" y="0"/> <rect fill="#0001" width="10" height="1" x="0" y="1"/> <rect fill="#0001" width="10" height="1" x="0" y="3"/> <rect fill="#0001" width="10" height="1" x="0" y="5"/> <rect fill="#0001" width="10" height="1" x="0" y="7"/> <rect fill="#0001" width="10" height="1" x="0" y="9"/> <path d="M0 0 h10 L9 1 h-8 v8 L0 10 z" fill="#ff05"/> <path d="M10 10 h-10 L1 9 h8 v-8 L10 0 z" fill="#0f05"/> <rect fill="#0002" width="10" height=".1" x="0" y="9.9"/> <rect fill="#0002" width="10" height=".1" x="0" y="0"/> <rect fill="#0002" height="10" width=".1" y="0" x="9.9"/> <rect fill="#0002" height="10" width=".1" y="0" x="0"/> </pattern> </defs> <!-- <rect fill="url(#grid)" width="1000" height="1000" x="0" y="0" style="opacity:.5"/> --> --> </svg> </body> </html>