fah
✨ elzaphaN TV
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> body{ margin: 0; } </style> </head> <body> <svg viewBox="0 0 100 75"> <defs> <pattern id="star" viewBox="0,0,25,25" width="20%" height="20%"> <!-- ตรงกลาง--> <circle cx="12.5" cy="12.5" r="4.5" fill="none" stroke="black" stroke-width=".4"></circle> <!-- ตาซ้าย--> <circle cx="11" cy="11" r=".6"></circle> <!-- ตาขวา--> <circle cx="14" cy="11" r=".6"></circle> <!-- ปาก --> <path d="M10.5 13 C10.5 16, 14.5 13, 14.5 13" stroke="black" stroke-width=".4" fill="none"></path> <!-- บนสุด--> <circle cx="12.5" cy="5" r="1"></circle> <!-- บนขวา--> <circle cx="18.75" cy="8.75" r="1"></circle> <!-- ขวาล่าง--> <circle cx="18.75" cy="16.25" r="1"></circle> <!-- ล่าง--> <circle cx="12.5" cy="20" r="1"></circle> <!-- ล่างซ้าย--> <circle cx="6.25" cy="16.25" r="1"></circle> <!-- ซ้ายบน--> <circle cx="6.25" cy="8.75" r="1"></circle> </pattern> </defs> <rect width="100" height="75" fill="url(#star)"></rect> </svg> </body> </html>