SVG Path Pattern (Copy 6756)
✨ นายณัฐภัทร วัฒนพิทักษ์พงศ์
<html> <head> <title>Let's Start </title> <style> body{ background:#f1f6ff; margin:1rem; text-align:center; font-family:sans-serif; } svg{ background:white; box-shadow:0 0 20px #0001; width:80%; } </style> </head> <body> <svg viewBox="0 0 100 100"> <!-- สร้าง pattern --> <defs> <pattern id="wow" viewBox="0 0 10 10" patternUnits="userSpaceOnUse" x="0" y="0" width="10" height="10"> <path stroke="#5E35B1" d="m5,5 l5,5"></path> </pattern> </defs> </defs> <!-- ใช้ pattern --> <rect fill="url(#wow)" width=100 height="100"/> </svg> </body> </html>